<!--
  conBrowser=0;
  function display(stuff) { window.status = stuff; }
//-->


<!--
  conBrowser=1;
 pic1on  = new Image(97,27);  		pic1on.src  = 'images/headings/home!.gif';
  pic1off = new Image(97,27); 	 	pic1off.src = 'images/headings/home.gif';
  pic1stay = new Image(97,27);  	pic1stay.src = 'images/headings/home!.gif';
  pic2on  = new Image(97,27);  		pic2on.src  = 'images/headings/dogs!.gif';
  pic2off = new Image(97,27);  		pic2off.src = 'images/headings/dogs.gif';
  pic2stay = new Image(97,27);  	pic2stay.src = 'images/headings/dogs!.gif';
  pic3on  = new Image(97,27);  		pic3on.src  = 'images/headings/cats!.gif';
  pic3off = new Image(97,27);  		pic3off.src = 'images/headings/cats.gif';
  pic3stay = new Image(97,27);  	pic3stay.src = 'images/headings/cats!.gif';
  pic4on  = new Image(97,27); 	 	pic4on.src  = 'images/headings/buy!.gif';
  pic4off = new Image(97,27); 	 	pic4off.src = 'images/headings/buy.gif';
  pic4stay = new Image(97,27);  	pic4stay.src = 'images/headings/buy!.gif';
  pic5on  = new Image(97,27);  		pic5on.src = 'images/headings/faq!.gif';
  pic5off = new Image(97,27);  		pic5off.src = 'images/headings/faq.gif';
  pic5stay = new Image(97,27);  	pic5stay.src = 'images/headings/faq!.gif';
  pic6on  = new Image(97,27);  		pic6on.src = 'images/headings/contact!.gif';
  pic6off = new Image(97,27);  		pic6off.src = 'images/headings/contact.gif';
  pic6stay = new Image(97,27);  	pic6stay.src = 'images/headings/contact!.gif';
  pic7on  = new Image(97,27);  		pic7on.src = 'images/headings/links!.gif';
  pic7off = new Image(97,27);  		pic7off.src = 'images/headings/links.gif';
  pic7stay = new Image(97,27);  	pic7stay.src = 'images/headings/links!.gif';
  pic8on  = new Image(97,27);  		pic8on.src = 'images/headings/cd!.gif';
  pic8off = new Image(97,27);  		pic8off.src = 'images/headings/cd.gif';
  pic8stay = new Image(97,27);  	pic8stay.src = 'images/headings/cd!.gif';
  pic9on  = new Image(97,27);  		pic9on.src = 'images/headings/references!.gif';
  pic9off = new Image(97,27);  		pic9off.src = 'images/headings/references.gif';
  pic9stay = new Image(97,27);  	pic9stay.src = 'images/headings/references!.gif';
  pic10on  = new Image(97,27);  	pic10on.src = 'images/headings/horses!.gif';
  pic10off = new Image(97,27);  	pic10off.src = 'images/headings/horses.gif';
  pic10stay = new Image(97,27);  	pic10stay.src = 'images/headings/horses!.gif';
  pic11on  = new Image(97,27);  	pic11on.src = 'images/headings/vets!.gif';
  pic11off = new Image(97,27);  	pic11off.src = 'images/headings/vets.gif';
  pic11stay = new Image(97,27);  	pic11stay.src = 'images/headings/vets!.gif';
  pic12on  = new Image(97,27);  	pic12on.src = 'images/headings/rabbits!.gif';
  pic12off = new Image(97,27);  	pic12off.src = 'images/headings/rabbits.gif';
  pic12stay = new Image(97,27);  	pic12stay.src = 'images/headings/rabbits!.gif';
  pic13on  = new Image(97,27);  	pic13on.src = 'images/headings/downloads!.gif';
  pic13off = new Image(97,27);  	pic13off.src = 'images/headings/downloads.gif';
  pic13stay = new Image(97,27);  	pic13stay.src = 'images/headings/downloads!.gif';
  
/*Include more pictures here! Don't forget to change height und width of the image! In this example it's 14,14.*/

//-->



<!--
	 var whichbutton = 0
  	function HighLight(muspic) {
        if (conBrowser) {
                picnavn = eval(muspic + "on");
                document [muspic].src = picnavn.src;
                }
        }

	function UndoHighLight(muspic) {
        if (conBrowser) {
                picnavn = eval(muspic + "off");
                document [muspic].src = picnavn.src;
				  }	
        }

	function Static(muspic) {
        if (conBrowser) {
                picnavn = eval(muspic + "stay");
                document [muspic].src = picnavn.src;
				  }
        }
   function Change() {
        if (conBrowser) {
				  if (whichbutton == 1) UndoHighLight('pic1');
				  if (whichbutton == 2) UndoHighLight('pic2');
				  if (whichbutton == 3) UndoHighLight('pic3');
				  if (whichbutton == 4) UndoHighLight('pic4');
				  if (whichbutton == 5) UndoHighLight('pic5');
				  if (whichbutton == 6) UndoHighLight('pic6');
				  if (whichbutton == 7) UndoHighLight('pic7');
				  
				  
/*Include the if-clauses for further pictures here! */
				  }
		 }
//-->