<!--

  if (document.images)
   {
     pic1on= new Image(55,32);
     pic1on.src="images/customON55x32.gif";  
     pic2on= new Image(31,32);
     pic2on.src="images/allON31x32.gif";
     pic3on= new Image(48,32);
     pic3on.src="images/tablesON48x32.gif";
     pic4on= new Image(59,32);
     pic4on.src="images/lightingON59x32.gif";
     pic5on= new Image(52,32);
     pic5on.src="images/mirrorsON52x32.gif";
     pic6on= new Image(49,32);
     pic6on.src="images/clocksON49x32.gif";
     pic7on= new Image(54,32);
     pic7on.src="images/storageON54x32.gif";
     pic8on= new Image(45,32);
     pic8on.src="images/homeON45x32.gif";
     pic9on= new Image(47,32);
     pic9on.src="images/aboutON47x32.gif";  
     pic10on= new Image(54,32);
     pic10on.src="images/contactON54x32.gif";  

     pic1off= new Image(55,32);
     pic1off.src="images/customOFF55x32.gif";
     pic2off= new Image(31,32);
     pic2off.src="images/allOFF31x32.gif";
     pic3off= new Image(48,32);
     pic3off.src="images/tablesOFF48x32.gif";
     pic4off= new Image(59,32);
     pic4off.src="images/lightingOFF59x32.gif";
     pic5off= new Image(52,32);
     pic5off.src="images/mirrorsOFF52x32.gif";
     pic6off= new Image(49,32);
     pic6off.src="images/clocksOFF49x32.gif";
     pic7off= new Image(54,32);
     pic7off.src="images/storageOFF54x32.gif";
     pic8off= new Image(45,32);
     pic8off.src="images/homeOFF45x32.gif";
     pic9off= new Image(45,32);
     pic9off.src="images/aboutOFF47x32.gif";
     pic10off= new Image(54,32);
     pic10off.src="images/contactOFF54x32.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;
    }
 }

//-->