<!--
  if (document.images)
   {
     pic1on= new Image(163,25);
     pic1on.src="images/about_us-over.gif";  
     pic2on= new Image(175,25);
     pic2on.src="images/commercial-over.gif";  
     pic3on= new Image(167,25);
     pic3on.src="images/residential-over.gif";  
     pic4on= new Image(140,25);
     pic4on.src="images/nibbler-over.gif";  
     pic5on= new Image(153,25);
     pic5on.src="images/links-over.gif";  
     
     pic1off= new Image(163,25);
     pic1off.src="images/about_us.gif";
     pic2off= new Image(175,25);
     pic2off.src="images/commercial.gif";
     pic3off= new Image(167,25);
     pic3off.src="images/residential.gif";
     pic4off= new Image(140,25);
     pic4off.src="images/nibbler.gif";
     pic5off= new Image(153,25);
     pic5off.src="images/links.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;
    }
 }
//-->


