/*Bildertausch der Navigationsleiste*/
  function navileiste_zurueck_on()
  {
   window.document.images["zurueck"].src="./bilder/navileiste_zurueck_on.gif";
  }
  function navileiste_zurueck_off()
  {
   window.document.images["zurueck"].src="./bilder/navileiste_zurueck.gif";
  }
  function navileiste_vor_on()
  {
   window.document.images["vor"].src="./bilder/navileiste_vor_on.gif";
  }
  function navileiste_vor_off()
  {
   window.document.images["vor"].src="./bilder/navileiste_vor.gif";
  }
  function navileiste_nachoben_on()
  {
   window.document.images["nachoben"].src="./bilder/navileiste_nachoben_on.gif";
  }
  function navileiste_nachoben_off()
  {
   window.document.images["nachoben"].src="./bilder/navileiste_nachoben.gif";
  }
  function navileiste_home_on()
  {
   window.document.images["home"].src="./bilder/navileiste_home_on.gif";
  }
  function navileiste_home_off()
  {
   window.document.images["home"].src="./bilder/navileiste_home.gif";
  }
  function navileiste_mail_on()
  {
   window.document.images["mail"].src="./bilder/navileiste_mail_on.gif";
  }
  function navileiste_mail_off()
  {
   window.document.images["mail"].src="./bilder/navileiste_mail.gif";
  }

/*FUNCTION GO für die Stichwortwahl auf sitemap.htm*/
  function go ()
  {
   var loc=document.formular.auswahl.selectedIndex;
   document.formular.reset();
   document.formular.elements[0].blur();
   if (loc == 2)
    document.location="kalender1.html";
   if (loc == 3)
    document.location="kontakt1.html";
   if (loc == 4)
    document.location="lage6.html";
   if (loc == 5)
    document.location="haus1.html";
   if (loc == 6)
    document.location="kalender1.html";
   if (loc == 7)
    document.location="kontakt1.html";
   if (loc == 8)
    document.location="lage1.html";
   if (loc == 9)
    document.location="kontakt1.html";
   if (loc == 10)
    document.location="preise1.html";
   if (loc == 11)
    document.location="lage4.html";
   if (loc == 12)
    document.location="haus2.html";
  }