<!--
	 
    var visited1=1, visited2=0, visited3=0, visited3=0, visited4=0, visited5=0;     
     // the "visited" variables above check if a page has already been visited and set button colors accordingly !!
	 
     Buttona1=new Image();
     Buttona1.src="graphics/orchi1haller.gif";
     Buttona2=new Image();
     Buttona2.src="graphics/orchi2haller.gif";
     Buttona3=new Image();
     Buttona3.src="graphics/orchi3haller.gif";

   function wechsel1()   // Überfunktion
   {
  	  window.document.images[0].src=Buttona2.src;
   }
   function wechsel2()   // Ausfunktion
   {
     if(visited1 == 0)
     {
	  window.document.images[0].src=Buttona1.src;
     }
     else
     {
     window.document.images[0].src=Buttona3.src;
     }
   }
   function wechsel3()   // Klickfunktion
   {
     window.document.images[0].src=Buttona3.src;
     visited1=1;
   }

   function wechsel21()   // Überfunktion
   {
  	  window.document.images[1].src=Buttona2.src;
   }
   function wechsel22()   // Ausfunktion
   {
     if(visited2 == 0)
     {
	  window.document.images[1].src=Buttona1.src;
     }
     else
     {
     window.document.images[1].src=Buttona3.src;
     }
   }
   function wechsel23()   // Klickfunktion
   {
     window.document.images[1].src=Buttona3.src;
     visited2=1;
   }
   
	function wechsel31()   // Überfunktion
   {
  	  window.document.images[2].src=Buttona2.src;
   }
   function wechsel32()   // Ausfunktion
   {
     if(visited3 == 0)
     {
	  window.document.images[2].src=Buttona1.src;
     }
     else
     {
     window.document.images[2].src=Buttona3.src;
     }
   }	  
   function wechsel33()   // Klickfunktion
   {
     window.document.images[2].src=Buttona3.src;
     visited3=1;
   }
	function wechsel41()   // Überfunktion
   {
  	  window.document.images[3].src=Buttona2.src;
   }
   function wechsel42()   // Ausfunktion
   {
     if(visited4 == 0)
     {
	  window.document.images[3].src=Buttona1.src;
     }
     else
     {
     window.document.images[3].src=Buttona3.src;
     }
   }	  
   function wechsel43()   // Klickfunktion
   {
     window.document.images[3].src=Buttona3.src;
     visited4=1;
   }
	
	function wechsel51()   // Überfunktion
   {
  	  window.document.images[4].src=Buttona2.src;
   }
   function wechsel52()   // Ausfunktion
   {
     if(visited5 == 0)
     {
	  window.document.images[4].src=Buttona1.src;
     }
     else
     {
     window.document.images[4].src=Buttona3.src;
     }
   }	  
   function wechsel53()   // Klickfunktion
   {
     window.document.images[4].src=Buttona3.src;
     visited5=1;
   }
  
 //-->