
<!-- // Start

// Define image sources

homeOff = new Image();
homeOff.src = "images/home.gif";
homeOn = new Image();
homeOn.src = "images/home2.gif";

historyOff = new Image();
historyOff.src = "images/history.gif";
historyOn = new Image();
historyOn.src = "images/history2.gif";

groundsOff = new Image();
groundsOff.src = "images/grounds.gif";
groundsOn = new Image();
groundsOn.src = "images/grounds2.gif";

servicesOff = new Image();
servicesOff.src = "images/services.gif";
servicesOn = new Image();
servicesOn.src = "images/services2.gif";

contactOff = new Image();
contactOff.src = "images/contact.gif";
contactOn = new Image();
contactOn.src = "images/contact2.gif";

photosOff = new Image();
photosOff.src = "images/photos.gif";
photosOn = new Image();
photosOn.src = "images/photos2.gif";

// Rollover function

function change(imgName,imgState)
{
	// Change photobutton image
	document.images [imgName].src = eval(imgName + imgState + ".src");
}
// End -->

