<!--

  if (document.images)
   {
     pic1on= new Image(133,30);
     pic1on.src="graphics/buttons/bio2.jpg";  
     pic2on= new Image(133,30);
     pic2on.src="graphics/buttons/stats2.jpg";
     pic3on= new Image(133,30);
     pic3on.src="graphics/buttons/highlights2.jpg";  
     pic4on= new Image(133,30);
     pic4on.src="graphics/buttons/press2.jpg";
     pic5on= new Image(133,30);
     pic5on.src="graphics/buttons/schedule2.jpg";
     pic6on= new Image(133,30);
     pic6on.src="graphics/buttons/photo2.jpg";  
     pic7on= new Image(133,30);
     pic7on.src="graphics/buttons/tapes2.jpg";
     pic8on= new Image(133,30);
     pic8on.src="graphics/buttons/contact2.jpg";
     

     pic1off= new Image(133,30);
     pic1off.src="graphics/buttons/bio1.jpg";  
     pic2off= new Image(133,30);
     pic2off.src="graphics/buttons/stats1.jpg";
     pic3off= new Image(133,30);
     pic3off.src="graphics/buttons/highlights1.jpg";  
     pic4off= new Image(133,30);
     pic4off.src="graphics/buttons/press1.jpg";
     pic5off= new Image(133,30);
     pic5off.src="graphics/buttons/schedule1.jpg";
     pic6off= new Image(133,30);
     pic6off.src="graphics/buttons/photo1.jpg";  
     pic7off= new Image(133,30);
     pic7off.src="graphics/buttons/tapes1.jpg";
     pic8off= new Image(133,30);
     pic8off.src="graphics/buttons/contact1.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;
    }
 }

//-->