// JavaScript Document

if (document.images) {
	btnOurStoryon = new Image();           // The onmouseover image
	btnOurStoryon.src = "images/mnu-our-story-cur.gif";  
	
	btnOurStoryoff = new Image();          // The normally seen image
	btnOurStoryoff.src = "images/mnu-our-story.gif";
	
	btnServiceson = new Image();           // The onmouseover image
	btnServiceson.src = "images/mnu-services-cur.gif";  
	
	btnServicesoff = new Image();          // The normally seen image
	btnServicesoff.src = "images/mnu-services.gif";
	
	btnReputationon = new Image();           // The onmouseover image
	btnReputationon.src = "images/mnu-reputation-cur.gif";  
	
	btnReputationoff = new Image();          // The normally seen image
	btnReputationoff.src = "images/mnu-reputation.gif";
	
	btnOurPeopleon = new Image();           // The onmouseover image
	btnOurPeopleon.src = "images/mnu-people-cur.gif";  
	
	btnOurPeopleoff = new Image();          // The normally seen image
	btnOurPeopleoff.src = "images/mnu-people.gif";
	
  }				  //This function changes the image when over.
    function imgOn(imgName) {
            if (document.images) {
            document.images[imgName].src = eval(imgName + "on.src");
            }
    }				   //This function changes the image back when off.
    function imgOff(imgName) {
            if (document.images) {
            document.images[imgName].src = eval(imgName + "off.src");        
            }
    }
