function displayDate(){
      var this_month = new Array(12);
      this_month[0]  = "Januar";
      this_month[1]  = "Februar";
      this_month[2]  = "März";
      this_month[3]  = "April";
      this_month[4]  = "Mai";
      this_month[5]  = "Juni";
      this_month[6]  = "Juli";
      this_month[7]  = "August";
      this_month[8]  = "September";
      this_month[9]  = "Oktober";
      this_month[10] = "November";
      this_month[11] = "Dezember";
      var today = new Date();
      var day   = today.getDate();
      var month = today.getMonth();
      var year  = today.getYear();
      if (year < 1900){
         year += 1900;
      }
      return(day+". "+this_month[month]+" " +year);
    }

// Bildwechsler 

var BW=new Array('Bilder/BW/BW_Bild5.jpg',
				 'Bilder/BW/BW_Bild1.jpg',
           		 'Bilder/BW/BW_Bild2.jpg',
           		 'Bilder/BW/BW_Bild3.jpg',
           		 'Bilder/BW/BW_Bild4.jpg',
           		 'Bilder/BW/BW_Bild6.gif',
           		 'Bilder/BW/BW_Bild.gif');
           	
var speed=3000;
var pos=0;

function BWdoit () 
{

// Diashow-Script von Thomas Salvador, http://www.brauchbar.de
// Freeware. Nutzung erlaubt, solange diese Copyrightmeldung
// unveraendert erhalten bleibt.

if (!(document.images)) {return;}

 document.BWBild.src=BW[pos++];

 if (pos == BW.length) { pos = 0; }
 setTimeout("BWdoit();",speed);
}
