<!--
var imgs = new Array();

function showPic(id){
	mainImg.src = '/images/spacer.gif';
	mainImg.height = imgs[id].ht;
	mainImg.width = imgs[id].wd;
	mainImg.alt = imgs[id].alt;
	mainImg.src = imgs[id].url;
	// only way to force pic to load seems to be to pause :(
	pause(500);
	showDiv(id);	
}
function Picture(url, ht, wd, alt, id){
	this.id = id;
	this.url = url;
	this.ht = ht;
	this.wd = wd;
	this.alt = alt;
	return this;
}
function pause(interval){
	var d = new Date();
	while (1){
		mill = new Date(); 
		diff = mill-d  		// difference in milliseconds
		if(diff > interval) break;
	}
}

//-->