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


<!--
  conBrowser=1;
  pic1on  = new Image(59,23);  		pic1on.src  = '/images/home!.gif';
  pic1off = new Image(59,23);  		pic1off.src = '/images/home.gif';
  pic1stay = new Image(59,23);  	pic1stay.src = '/images/home!.gif';
  
  pic2on  = new Image(98,23);  		pic2on.src  = '/images/products!.gif';
  pic2off = new Image(98,23);  		pic2off.src = '/images/products.gif';
  pic2stay = new Image(98,23);  	pic2stay.src = '/images/products!.gif';
  
  pic3on  = new Image(66,23);  		pic3on.src  = '/images/order!.gif';
  pic3off = new Image(66,23);  		pic3off.src = '/images/order.gif';
  pic3stay = new Image(66,23);  	pic3stay.src = '/images/order!.gif';
  
  pic4on  = new Image(88,23);  		pic4on.src  = '/images/xcontact!.gif';
  pic4off = new Image(88,23);  		pic4off.src = '/images/xcontact.gif';
  pic4stay = new Image(88,23);  	pic4stay.src = '/images/xcontact!.gif';
  
  pic5on  = new Image(45,23);  		pic5on.src  = '/images/FAQ!.gif';
  pic5off = new Image(45,23);  		pic5off.src = '/images/FAQ.gif';
  pic5stay = new Image(45,23);  	pic5stay.src = '/images/FAQ!.gif';
  
  pic6on  = new Image(132,23);  	pic6on.src  = '/images/testimonials!.gif';
  pic6off = new Image(132,23);  	pic6off.src = '/images/testimonials.gif';
  pic6stay = new Image(132,23);  	pic6stay.src = '/images/testimonials!.gif';
  
  
  
  pic7on  = new Image(150,36);  	pic7on.src  = '/images/espresso-beans!.gif';
  pic7off = new Image(150,36);  	pic7off.src = '/images/espresso-beans.gif';
  pic7stay = new Image(150,36);  	pic7stay.src = '/images/espresso-beans!.gif';
  
  pic8on  = new Image(168,36);  	pic8on.src  = '/images/espresso-ground!.gif';
  pic8off = new Image(168,36);  	pic8off.src = '/images/espresso-ground.gif';
  pic8stay = new Image(168,36);  	pic8stay.src = '/images/espresso-ground!.gif';
  
  pic9on  = new Image(157,36);  	pic9on.src  = '/images/cafetiere-beans!.gif';
  pic9off = new Image(157,36);  	pic9off.src = '/images/cafetiere-beans.gif';
  pic9stay = new Image(157,36);  	pic9stay.src = '/images/cafetiere-beans!.gif';
  
  pic10on  = new Image(175,36);  	pic10on.src  = '/images/cafetiere-ground!.gif';
  pic10off = new Image(175,36);  	pic10off.src = '/images/cafetiere-ground.gif';
  pic10stay = new Image(175,36);  	pic10stay.src = '/images/cafetiere-ground!.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');
				  if (whichbutton == 8) UndoHighLight('pic8');
				  if (whichbutton == 9) UndoHighLight('pic9');
				  if (whichbutton == 10) UndoHighLight('pic10');

				  
/*Include the if-clauses for further pictures here! */
				  }
		 }
//-->