if (document.images)
	{

	homeon= new Image(125,23);
	homeon.src="images/home_on.gif";  
	homeoff= new Image(125,23);
	homeoff.src="images/home_off.gif";
	homemessage= "C & E Plating - Home Page";


	abouton= new Image(125,22);
	abouton.src="images/about_on.gif";  
	aboutoff= new Image(125,22);
	aboutoff.src="images/about_off.gif";
	aboutmessage= "C & E Plating - About Us";

	serviceson= new Image(125,22);
	serviceson.src="images/services_on.gif";  
	servicesoff= new Image(125,22);
	servicesoff.src="images/services_off.gif";
	servicesmessage= "C & E Plating - Services";

	locationon= new Image(125,22);
	locationon.src="images/location_on.gif";  
	locationoff= new Image(125,22);
	locationoff.src="images/location_off.gif";
	locationmessage= "C & E Plating - location";

	contacton= new Image(125,22);
	contacton.src="images/contact_on.gif";  
	contactoff= new Image(125,22);
	contactoff.src="images/contact_off.gif";
	contactmessage= "C & E Plating - 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="";
		}
	}