<!--

  if (document.images)
   {
     pic1on= new Image(189,48);
     pic1on.src="graphics/buttons/home2.jpg";  
     pic2on= new Image(189,48);
     pic2on.src="graphics/buttons/info2.jpg";
     pic3on= new Image(189,48);
     pic3on.src="graphics/buttons/sales2.jpg";  
     pic4on= new Image(189,48);
     pic4on.src="graphics/buttons/herdsires2.jpg";
     pic5on= new Image(189,48);
     pic5on.src="graphics/buttons/about2.jpg"; 
     pic6on= new Image(189,48);
     pic6on.src="graphics/buttons/contact2.jpg"; 
     pic7on= new Image(189,48);
     pic7on.src="graphics/buttons/store2.jpg"; 
     pic8on= new Image(189,48);
     pic8on.src="graphics/buttons/events2.jpg"; 

     pic1off= new Image(189,48);
     pic1off.src="graphics/buttons/home1.jpg";  
     pic2off= new Image(189,48);
     pic2off.src="graphics/buttons/info1.jpg";
     pic3off= new Image(189,48);
     pic3off.src="graphics/buttons/sales1.jpg";  
     pic4off= new Image(189,48);
     pic4off.src="graphics/buttons/herdsires1.jpg";
     pic5off= new Image(189,48);
     pic5off.src="graphics/buttons/about1.jpg";
     pic6off= new Image(189,48);
     pic6off.src="graphics/buttons/contact1.jpg";   
     pic7off= new Image(189,48);
     pic7off.src="graphics/buttons/store1.jpg";    
     pic8off= new Image(189,48);
     pic8off.src="graphics/buttons/events1.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;
    }
 }

//-->