<!--
/*
page1ImageSwitch.js
*/
function switchImage(whichImage)
{
// get div photo1 inner html
x = document.getElementById("photo1");
switch(whichImage)
{
case "a":
x.innerHTML = "<img src=\"images/home/stillife-with-teapotL.jpg\" />";
	break;
	
case "b":
x.innerHTML = "<img src=\"images/home/2FiguresInLandscapeL.jpg\" />";
	break;
case "c":
x.innerHTML = " &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp; &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;<img src=\"images/home/smokerL.jpg\" />";
	break;
	
case "restore":
x.innerHTML = "<img src=\"images/home/MediterraneanVillageL.jpg\" alt=\"Mediterranean Village by Dutch artist Ralph Meijeringh\" title=\"Mediterranean Village by Dutch artist Ralph Meijeringh\" width=\"603\" height=\"500\" />";
	break;	
}
}


// -->
