<!--
// Create image objects, preload all active and inactive images.
{ 
	about0 = new Image(); about0.src = "/images/about_0.gif";
	services0 = new Image(); services0.src = "/images/services_0.gif";
	gallery0 = new Image(); gallery0.src = "/images/gallery_0.gif";
	links0 = new Image(); links0.src = "/images/links_0.gif";
	contact0 = new Image(); contact0.src = "/images/contact_0.gif";

	about1 = new Image(); about1.src = "/images/about_1.gif";
	services1 = new Image(); services1.src = "/images/services_1.gif";
	gallery1 = new Image(); gallery1.src = "/images/gallery_1.gif";
	links1 = new Image(); links1.src = "/images/links_1.gif";
	contact1 = new Image(); contact1.src = "/images/contact_1.gif";

}
// Function to "activate" images.
function over(imgName) {
	document[imgName].src = eval(imgName + "1.src");
}
// Function to "deactivate" images.
function out(imgName) {
	document[imgName].src = eval(imgName + "0.src");
}
//-->
