function changeImage(theimage)
{
	document.images['colorchange'].src = theimage;
}
function switchdiv(from,to)
{
	hidediv(from);
	showdiv(to);
}
function showdiv(movlay)
{
	myObj = document.getElementById(movlay);
	myObj.style.display='';
}
function hidediv(movlay)
{
	myObj = document.getElementById(movlay);
	myObj.style.display='none';
}
