  if (document.images)
   {

	 p1on= new Image(100,25);
     p1on.src="img/menu_01_h.png";
     
     p1off= new Image(100,25);
     p1off.src="img/menu_01.png";  

     p2on= new Image(100,25);
     p2on.src="img/menu_02_h.png";
     
     p2off= new Image(100,25);
     p2off.src="img/menu_02.png";  
	 
	 p3on= new Image(100,25);
     p3on.src="img/menu_03_h.png";
     
     p3off= new Image(100,25);
     p3off.src="img/menu_03.png";  

     p4on= new Image(100,25);
     p4on.src="img/menu_04_h.png";
     
     p4off= new Image(100,25);
     p4off.src="img/menu_04.png";  

	 p5on= new Image(100,25);
     p5on.src="img/menu_05_h.png";
     
     p5off= new Image(100,25);
     p5off.src="img/menu_05.png";  

     p6on= new Image(100,25);
     p6on.src="img/menu_06_h.png";
     
     p6off= new Image(100,25);
     p6off.src="img/menu_06.png";  

   }

function lon(imgName)
 {
   if (document.images)
    {
      imgOn=eval(imgName + "on.src");
      document[imgName].src= imgOn;
    }
 }

function loff(imgName)
 {
   if (document.images)
    {
      imgOff=eval(imgName + "off.src");
      document[imgName].src= imgOff;
    }
 }

