<!-- 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] = "Jan";
months[1] = "Feb";
months[2] = "Mar";
months[3] = "Apr";
months[4] = "May";
months[5] = "June";
months[6] = "July";
months[7] = "Aug";
months[8] = "Sept";
months[9] = "Oct";
months[10] = "Nov";
months[11] = "Dec";


function switcheroo(theid,thetitle,thedesc) {
	//document.getElementById('thePicture').src="/portfolio/" + theid + ".jpg";
	//document.getElementById('descriptions').innerHTML = "<strong>" + thetitle + "</strong><br />" + thedesc;
	//return false;
}

function gallDesc(thetxt) {
	if (document.getElementById(thetxt+"Img")) {
		document.getElementById(thetxt+"Img").style.display="block";
	}
	document.getElementById('galldesc').innerHTML=thetxt;
}

function gallDescOff(thetxt) {
	if (document.getElementById(thetxt+"Img")) {
		document.getElementById(thetxt+"Img").style.display="none";
	}
	document.getElementById('galldesc').innerHTML='&laquo; Choose a colour on the left';
}

// - end hiding -->