if (document.images)
	{

	homeon= new Image(150,20);
	homeon.src="images/homeon.gif";  
	homeoff= new Image(150,20);
	homeoff.src="images/homeoff.gif";
	homemessage= "njo L.E.D's - Home Page";


	abouton= new Image(150,20);
	abouton.src="images/abouton.gif";  
	aboutoff= new Image(150,20);
	aboutoff.src="images/aboutoff.gif";
	aboutmessage= "njo L.E.D's - About Us";

	designon= new Image(150,20);
	designon.src="images/designon.gif";  
	designoff= new Image(150,20);
	designoff.src="images/designoff.gif";
	designmessage= "njo L.E.D's - Design";

	manufactureon= new Image(150,20);
	manufactureon.src="images/manufactureon.gif";  
	manufactureoff= new Image(150,20);
	manufactureoff.src="images/manufactureoff.gif";
	manufacturemessage= "njo L.E.D's - Manufacture";

	productson= new Image(150,20);
	productson.src="images/productson.gif";  
	productsoff= new Image(150,20);
	productsoff.src="images/productsoff.gif";
	productsmessage= "njo L.E.D's - Products";

	galleryon= new Image(150,20);
	galleryon.src="images/galleryon.gif";  
	galleryoff= new Image(150,20);
	galleryoff.src="images/galleryoff.gif";
	gallerymessage= "njo L.E.D's - Gallery";

	contacton= new Image(150,20);
	contacton.src="images/contacton.gif";  
	contactoff= new Image(150,20);
	contactoff.src="images/contactoff.gif";
	contactmessage= "njo L.E.D's - 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="";
		}
	}