<!--
// Tristate-Button-Steuerung
var anzahl_button=3;
var klick = 0 ;
var heileit = anzahl_button;
// Statustexte
stext = new Array(anzahl_button);


stext[2]="Zu den Seiten des Stöberstübchens";


// Bilder laden
if (document.images){
  normal_button = new Array(anzahl_button);
   hover_button = new Array(anzahl_button);

for (i=0; i<anzahl_button; i++){
   normal_button[i] = new Image();
    hover_button[i] = new Image();
          }

 normal_button[2].src = "grafik/weiter.gif";
  hover_button[2].src = "grafik/rweiter.gif";
  }

// onmouseover onmouseout onclick

function SCHALT(was, maus){

 if (document.images){
   if ((maus == 2) && (klick == 2)){
      document.images[heileit].src = normal_button[heileit].src;
      klick=0;
      heileit=anzahl_button;
    }

   if ((maus == 0) &&(was != heileit)){
      document.images[was].src = hover_button[was].src;
      window.status=stext[was];
       }

   if ((maus == 1) && (was != heileit))
      document.images[was].src = normal_button[was].src;
  }
}
//-->
