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


<!--
  conBrowser=1;
  pic1on  = new Image(62,20);  	        pic1on.src  = 'vetclick_images/fact_sheets!.gif';
  pic1off = new Image(62,20);  	        pic1off.src = 'vetclick_images/fact_sheets.gif';
  pic1stay = new Image(62,20);  	pic1stay.src = 'vetclick_images/fact_sheets!.gif';
  pic2on  = new Image(67,20);   	pic2on.src  = 'vetclick_images/kids_corner!.gif';
  pic2off = new Image(67,20);  	        pic2off.src = 'vetclick_images/kids_corner.gif';
  pic2stay = new Image(67,20);  	pic2stay.src = 'vetclick_images/kids_corner!.gif';
  pic3on  = new Image(42,20);    	pic3on.src  = 'vetclick_images/garden_pets!.gif';
  pic3off = new Image(42,20);   	pic3off.src = 'vetclick_images/garden_pets.gif';
  pic3stay = new Image(42,20);  	pic3stay.src ='vetclick_images/garden_pets!.gif';
  pic4on  = new Image(73,20);  		pic4on.src  = 'vetclick_images/photogallery!.gif';
  pic4off = new Image(73,20);  		pic4off.src = 'vetclick_images/photogallery.gif';
  pic4stay = new Image(73,20);  	pic4stay.src = 'vetclick_images/photogallery!.gif';
  pic5on  = new Image(73,20);  		pic5on.src  = 'vetclick_images/vet_search!.gif';
  pic5off = new Image(73,20);  		pic5off.src = 'vetclick_images/vet_search.gif';
  pic5stay = new Image(73,20);  	pic5stay.src = 'vetclick_images/vet_search!.gif';
  pic6on  = new Image(73,20);  		pic6on.src  = 'vetclick_images/fear!.gif';
  pic6off = new Image(73,20);  		pic6off.src = 'vetclick_images/fear.gif';
  pic6stay = new Image(73,20);  	pic6stay.src = 'vetclick_images/fear!.gif';
  pic7on  = new Image(73,20);  		pic7on.src  = 'vetclick_images/new_products!.gif';
  pic7off = new Image(73,20);  		pic7off.src = 'vetclick_images/new_products.gif';
  pic7stay = new Image(73,20);  	pic7stay.src = 'vetclick_images/new_products!.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! */
				  }
		 }