<!-- hide from old browsers

var days = new Array();
days[0] = "Sunday";
days[1] = "Monday";
days[2] = "Tuesday";
days[3] = "Wednesday";
days[4] = "Thursday";
days[5] = "Friday";
days[6] = "Saturday";

var months = new Array();
months[0] = "January";
months[1] = "February";
months[2] = "March";
months[3] = "April";
months[4] = "May";
months[5] = "June";
months[6] = "July";
months[7] = "August";
months[8] = "September";
months[9] = "October";
months[10] = "November";
months[11] = "December";

function noprodsmall(imgPath) {
	eval(imgPath).src = "images/noimg135.gif";
}

function switchImg(theImg,theCaption) {
	document.getElementById('GalleryImg').src="/gallery/" + theImg;
	document.getElementById('GalleryImg').alt=theCaption;
	document.getElementById('imgCaption').innerHTML=theCaption;
}

function toggleDiv(thediv) {
	if (document.getElementById(thediv)) {
		if (document.getElementById(thediv).style.display=='none'){
			document.getElementById(thediv).style.display = 'block';
		}else{
			document.getElementById(thediv).style.display = 'none';		
		}
	}
}

// - end hiding -->