	{

	homepageon= new Image(128,26);
	homepageon.src="images/nav/homepage-over.gif";  
	homepageoff= new Image(128,26);
	homepageoff.src="images/nav/homepage.gif";
	homepagemessage= "Homepage";

	abouton= new Image(128,26);
	abouton.src="images/nav/about-over.gif";  
	aboutoff= new Image(128,26);
	aboutoff.src="images/nav/about.gif";
	aboutmessage= "About Us";

	productson= new Image(128,26);
	productson.src="images/nav/products-over.gif";  
	productsoff= new Image(128,26);
	productsoff.src="images/nav/products.gif";
	productsmessage= "Products";

	locationon= new Image(128,26);
	locationon.src="images/nav/location-over.gif";  
	locationoff= new Image(128,26);
	locationoff.src="images/nav/location.gif";
	locationmessage= "Our Location";
	
	linkson= new Image(128,26);
	linkson.src="images/nav/links-over.gif";  
	linksoff= new Image(128,26);
	linksoff.src="images/nav/links.gif";
	linksmessage= "Links";

	contacton= new Image(128,26);
	contacton.src="images/nav/contact-over.gif";  
	contactoff= new Image(128,26);
	contactoff.src="images/nav/contact.gif";
	contactmessage= "Contact Us";


	}


function activate(imgName)
	{
	if (document.images)
		{
		imgOn=eval(imgName + "on.src");
		document[imgName].src= imgOn;
		imgMess=eval(imgName + "message");
		window.status=imgMess;
		}
	}

function deactivate(imgName)
	{
	if (document.images)
		{
		imgOff=eval(imgName + "off.src");
		document[imgName].src= imgOff;
		window.status="";
		}
	}

 
 
