// JavaScript Document

  if (document.images)
   {
     pic3on= new Image(100,25);
     pic3on.src="images/link_03_over.png";  

     pic3off= new Image(100,25);
     pic3off.src="images/link_03.png";
	 
	 pic2on= new Image(100,25);
     pic2on.src="images/link_02_over.png";  

     pic2off= new Image(100,25);
     pic2off.src="images/link_02.png";
	  
	 pic1on= new Image(100,25);
     pic1on.src="images/link_01_over.png";  

     pic1off= new Image(100,25);
     pic1off.src="images/link_01.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;
    }
 }

