
<!--Start Image Preloading-->

var pics = new Array("images/gif/buttons/HomeOver.gif","images/gif/buttons/AboutOver.gif","images/gif/buttons/SearchOver.gif",
"images/gif/buttons/ServicesOver.gif","images/gif/buttons/ContactUsOver.gif","images/gif/buttons/ViewMapOver.gif",
"images/gif/buttons/OpenGoogleMapOver.gif","images/gif/buttons/CloseGoogleMapOver.gif");

var preload = new Array();

for(var i=0; i<pics.length; i++)
{
preload[i] = new Image();
preload[i].src = pics[i];
}

<!--End Image Preloading-->// JavaScript Document


<!--Image Swapping-->
function NavSwap(a)
{
		//Swap the Global Navigation
		if (a == 1) document.images.HomeBtn.src = "images/gif/buttons/HomeUp.gif";
		if (a == 2) document.images.HomeBtn.src = "images/gif/buttons/HomeOver.gif";
		if (a == 3) document.images.AboutUsBtn.src = "images/gif/buttons/AboutUp.gif";
		if (a == 4) document.images.AboutUsBtn.src = "images/gif/buttons/AboutOver.gif";
		if (a == 5) document.images.SearchHomesBtn.src = "images/gif/buttons/SearchUp.gif";
		if (a == 6) document.images.SearchHomesBtn.src = "images/gif/buttons/SearchOver.gif";
		if (a == 7) document.images.OurServicesBtn.src = "images/gif/buttons/ServicesUp.gif";
		if (a == 8) document.images.OurServicesBtn.src = "images/gif/buttons/ServicesOver.gif";
		if (a == 9) document.images.ContactUsBtn.src = "images/gif/buttons/ContactUs.gif";
		if (a == 10) document.images.ContactUsBtn.src = "images/gif/buttons/ContactUsOver.gif";
		
		//Swap the View Map Button
		if (a == 11) document.images.ViewMapImage.src = "images/gif/buttons/ViewMapUp.gif";
		if (a == 12) document.images.ViewMapImage.src = "images/gif/buttons/ViewMapOver.gif";
		if (a == 13) document.images.OpenGoogleMap.src = "images/gif/buttons/OpenGoogleMapUp.gif";
		if (a == 14) document.images.OpenGoogleMap.src = "images/gif/buttons/OpenGoogleMapOver.gif";
		if (a == 15) document.images.CloseGoogleMap.src = "images/gif/buttons/CloseGoogleMapUp.gif";
		if (a == 16) document.images.CloseGoogleMap.src = "images/gif/buttons/CloseGoogleMapOver.gif";
}


//Show and hide the google map layer
/**function ShowGoogleMap()
{
	document.getElementById('GoogleMapDiv').style.left = '-1';
}

function HideGoogleMap()
{
	document.getElementById('GoogleMapDiv').style.left = '-498px';
}
*/









