// JavaScript Document

if (document.images) {

ladyfountain = new Image;
ladyfountain.src = "/images/ladyfountain.gif"

jester = new Image;
jester.src = "/images/jester.gif"

mandog = new Image;
mandog.src = "/images/mandog.gif"

home_photo1 = new Image;
home_photo1.src = "/images/home_photo1.jpg"

home_photo2 = new Image;
home_photo2.src = "/images/home_photo2.jpg"

home_photo3 = new Image;
home_photo3.src = "/images/home_photo3.jpg"

home_photo4 = new Image;
home_photo4.src = "/images/home_photo4.jpg"

home_photo5 = new Image;
home_photo5.src = "/images/home_photo5.jpg"

home_photo6 = new Image;
home_photo6.src = "/images/home_photo6.jpg"

home_photo7 = new Image;
home_photo7.src = "/images/home_photo7.jpg"

home_photo8 = new Image;
home_photo8.src = "/images/home_photo8.gif"


}



function changeImg(imgField,newImg){
	if(document.images) {
		document[imgField].src= eval(newImg + ".src")
	}
}