
  if (document.images)
   {
     pic1on= new Image(24,24);
     pic1on.src="images/icons/home.png";  
     pic2on= new Image(24,24);
     pic2on.src="images/icons/folder-add.png"; 
     pic3on= new Image(24,24);
     pic3on.src="images/icons/printer.png"; 
     pic4on= new Image(24,24);
     pic4on.src="images/icons/mail.png"; 

     pic1off= new Image(24,24);
     pic1off.src="images/icons/geel-home.png";
     pic2off= new Image(24,24);
     pic2off.src="images/icons/geel-folder-add.png";
     pic3off= new Image(24,24);
     pic3off.src="images/icons/geel-printer.png";
     pic4off= new Image(24,24);
     pic4off.src="images/icons/geel-mail.png";
   }

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;
    }
 }