  if (document.images)
   {
     pic1on= new Image(167,42);
     pic1on.src="img/home1.gif";  
     pic2on= new Image(167,42);
     pic2on.src="img/broodmares1.gif";  
     pic3on= new Image(167,42);
     pic3on.src="img/stallions1.gif";  
     pic4on= new Image(167,42);
     pic4on.src="img/foals1.gif";  
     pic5on= new Image(167,42); 
     pic5on.src="img/forsale1.gif"; 
     pic6on= new Image(167,42); 
     pic6on.src="img/showhorses1.gif"; 
     
     pic1off= new Image(167,42);
     pic1off.src="img/home2.gif";
     pic2off= new Image(167,42);
     pic2off.src="img/broodmares2.gif";    
     pic3off= new Image(167,42);
     pic3off.src="img/stallions2.gif";    
     pic4off= new Image(167,42);
     pic4off.src="img/foals2.gif";    
     pic5off= new Image(167,42);
     pic5off.src="img/forsale2.gif";    
     pic6off= new Image(167,42);
     pic6off.src="img/showhorses2.gif";    
   }

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;
    }
 }


document.write('<IMG src="img/bullet1.gif"> <A HREF="index.html" onMouseover="lightup(\'pic1\')" onMouseout="turnoff(\'pic1\')"><IMG src="img/home2.gif" name="pic1" width="167" height="42" border="0"></A><BR><IMG src="img/bullet1.gif"> <A HREF="Broodmares.html" onMouseover="lightup(\'pic2\')" onMouseout="turnoff(\'pic2\')"><IMG src="img/broodmares2.gif" name="pic2" width="167" height="42" border="0"></A><BR><IMG src="img/bullet1.gif"> <A HREF="Stallions.html" onMouseover="lightup(\'pic3\')" onMouseout="turnoff(\'pic3\')"><IMG src="img/stallions2.gif" name="pic3" width="167" height="42" border="0"></A><BR><IMG src="img/bullet1.gif"> <A HREF="Foals.html" onMouseover="lightup(\'pic4\')" onMouseout="turnoff(\'pic4\')"><IMG src="img/foals2.gif" name="pic4" width="167" height="42" border="0"></A><BR><IMG src="img/bullet1.gif"> <A HREF="ForSale.html" onMouseover="lightup(\'pic5\')" onMouseout="turnoff(\'pic5\')"><IMG src="img/forsale2.gif" name="pic5" width="167" height="42" border="0"></A><BR><IMG src="img/bullet1.gif"> <A HREF="ShowHorses.html" onMouseover="lightup(\'pic6\')" onMouseout="turnoff(\'pic6\')"><IMG src="img/showhorses2.gif" name="pic6" width="167" height="42" border="0"></A>');
