<!--
/*
page1ImageSwitch.js
*/
function switchImage(whichImage)
{
// get div photo1 inner html
x = document.getElementById("photo1");
switch(whichImage)
{
case "a":
x.innerHTML = "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/home/RedSunWithBoatsL.jpg\" />";

	break;
	
case "b":
x.innerHTML = "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/home/FireAtNightL.jpg\" />";
	break;
case "c":
x.innerHTML = "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/home/RegattaL.jpg\" />";
	break;
	
case "restore":
x.innerHTML = "<img src=\"images/home/BirdwithFlowers.jpg\" alt=\"Bird with Flowers by Dutch artist Ralph Meijeringh\" title=\"Bird with Flowers by Dutch artist Ralph Meijeringh\" width=\"629\" height=\"500\" />";
	break;	
}
}


// -->