if (document.images) 
{ 
pic1on= new Image(195,25); 
pic1on.src="../pics/explore/learning_header_on.jpg"; 
pic1off= new Image(195,25); 
pic1off.src="../pics/explore/learning_header_off.jpg"; 
   }

if (document.images) 
{ 
pic6on= new Image(195,25); 
pic6on.src="pics/suggest/learning_header_on.jpg"; 
pic6off= new Image(195,25); 
pic6off.src="pics/suggest/learning_header_off.jpg"; 
   }




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;
    }
 }