if (document.images) {
	
	img1on = new Image();           // The onmouseover image
	img1on.src = "navigation/home_over.gif";  
	img2on = new Image();
	img2on.src = "navigation/accom_over.gif";  
	img3on = new Image();
	img3on.src = "navigation/links_over.gif";
	img4on = new Image();
	img4on.src = "navigation/gallery_over.gif";
	img5on = new Image();
	img5on.src = "navigation/contact_over.gif";
	img1off = new Image();          // The normally seen image
	img1off.src = "navigation/home.gif"; 
	img2off = new Image();
	img2off.src = "navigation/accom.gif"; 
	img3off = new Image();
	img3off.src = "navigation/links.gif";
	img4off = new Image();
	img4off.src = "navigation/gallery.gif";
	img5off = new Image();
	img5off.src = "navigation/contact.gif";
	
  }				  //This function changes the image when over.
    function imgOn(imgName) {
            if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
            }
    }				   //This function changes the image back when off.
    function imgOff(imgName) {
            if (document.images) {
            document[imgName].src = eval(imgName + "off.src");        
            }
    }