

<!--
if (document.images) {
	img1on = new Image();           // The onmouseover image
	img1on.src = "gifs/homepagerb.gif";
	img2on = new Image();           
	img2on.src = "gifs/detailrb.gif";
	img3on = new Image();           
	img3on.src = "gifs/previousb.gif";
	img4on = new Image();           
	img4on.src = "gifs/nextpageb.gif";
	img5on = new Image();           
	img5on.src = "gifs/tractorspecs2.gif";
	img6on = new Image();           
	img6on.src = "gifs/drillspecs2.gif";
	img7on = new Image();           
	img7on.src = "gifs/partslistmo.gif";
	img8on = new Image();           
	img8on.src = "gifs/photoso.gif";
	img9on = new Image();           
	img9on.src = "gifs/tractorphotoso.gif";
	
	
	img1off = new Image();          // The normally seen image
	img1off.src = "gifs/homepagera.gif"; 
	img2off = new Image();          
	img2off.src = "gifs/detailra.gif"
	img3off = new Image();          
	img3off.src = "gifs/previousa.gif"
	img4off = new Image();          
	img4off.src = "gifs/nextpagea.gif"
	img5off = new Image();          
	img5off.src = "gifs/tractorspecs.gif"
	img6off = new Image();          
	img6off.src = "gifs/drillspecs.gif"
	img7off = new Image();          
	img7off.src = "gifs/partslista.gif"
	img8off = new Image();          
	img8off.src = "gifs/photos.gif"
	img9off = new Image();          
	img9off.src = "gifs/tractorphotos.gif"
	
  }				  //This function changes the image when over.
    function imgOn(imgName) {
            if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
            }
    }				   //This function changes the image back when off.
    function imgOff(imgName) {
            if (document.images) {
            document[imgName].src = eval(imgName + "off.src");        
            }
    }// -->




