// remove as neccesary //
if (document.images)
   {
     projects2on= new Image(85,70);
     projects2on.src="images/NAV/projectsMan_active.gif";
     
     projects2off= new Image(85,70);
     projects2off.src="images/NAV/projectsMan_dead.gif"; 
		 
		 
		 about2on= new Image(85,70);
     about2on.src="images/NAV/aboutMan_active.gif";
     
     about2off= new Image(85,70);
     about2off.src="images/NAV/aboutMan_dead.gif";
		 
		 		 
		 services2on= new Image(85,70);
     services2on.src="images/NAV/servicesMan_active.gif";
     
     services2off= new Image(85,70);
     services2off.src="images/NAV/servicesMan_dead.gif";    
	 	 
		 
	 	 club2on= new Image(85,70);
     club2on.src="images/NAV/clubMan_active.gif";
     
     club2off= new Image(85,70);
     club2off.src="images/NAV/clubMan_dead.gif"; 
	 	 
		 
	 	 news2on= new Image(85,70);
     news2on.src="images/NAV/newsMan_active.gif";
     
     news2off= new Image(85,70);
     news2off.src="images/NAV/newsMan_dead.gif";  
	 	 
		 
	 	 sitemap2on= new Image(85,70);
     sitemap2on.src="images/NAV/sitemapMan_active.gif";
     
     sitemap2off= new Image(85,70);
     sitemap2off.src="images/NAV/sitemapMan_dead.gif"; 
		 
		 contact2on= new Image(85,70);
     contact2on.src="images/NAV/contactMan_active.gif";
     
     contact2off= new Image(85,70);
     contact2off.src="images/NAV/contactMan_dead.gif";
		 
		 jobs2on= new Image(105,70);
     jobs2on.src="images/NAV/jobsMan_active.gif";
     
     jobs2off= new Image(105,70);
     jobs2off.src="images/NAV/jobsMan_dead.gif";
   }

function lightup(imgName)
 {
   if (document.images)
    {
      imgOn=eval(imgName + "on.src");
      document[imgName].src= imgOn;
    }
 }

function turnoff(imgName)
 {
   if (document.images)
    {
      imgOff=eval(imgName + "off.src");
      document[imgName].src= imgOff;
    }
 }