

function date () 
{
	var weekdays = new Array("Sonntag","Montag","Dienstag",
	"Mittwoch","Donnerstag","Freitag","Samstag");
	var now = new Date();
	var day = now.getDate();
	var month = now.getMonth() + 1;
	var year = now.getFullYear();
	var weekday = now.getDay();
	var day0 = ((day < 10) ? "0" : "");
	var month0 = ((month < 10) ? ".0" : ".");
	var today = day0 + day + month0 + month + "." + year;
	document.write(weekdays[weekday] + ", " + today);
}



if(window.navigator.systemLanguage && !window.navigator.language) {
  function hoverIE() {
    var LI = document.getElementById("Navigation").firstChild;
    do {
      if (sucheUL(LI.firstChild)) {
        LI.onmouseover=einblenden; LI.onmouseout=ausblenden;
      }
      LI = LI.nextSibling;
    }
    while(LI);
  }

  function sucheUL(UL) {
    do {
      if(UL) UL = UL.nextSibling;
      if(UL && UL.nodeName == "UL") return UL;
    }
    while(UL);
    return false;
  }

  function einblenden() {
    var UL = sucheUL(this.firstChild);
    UL.style.display = "block"; UL.style.backgroundColor = "#ffffff transparent";
  }
  function ausblenden() {
    sucheUL(this.firstChild).style.display = "none";
  }

  window.onload=hoverIE;
}

