// Suckerfish Dropdown

startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("navigation");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;


// Tageszeitabhaengige Begruessung auf der Startseite

var time = new Date();
var hour = time.getHours();
welcomeText = ""
if (hour >= 3 && hour < 12) welcomeText = "Guten Morgen und ";
else if (hour >= 12 && hour < 18) welcomeText = "Guten Tag und ";
else if (hour >= 18 && hour < 24) welcomeText = "Guten Abend und ";
else if (hour >= 0 && hour < 3) welcomeText = "Guten Abend und ";


// E-Mail Adressen maskieren

function showMail(account) {
	document.write('<a href="mailto:'+account+'&#064;&#098;&#111;&#114;&#115;&#099;&#104;&#098;&#097;&#099;&#104;&#046;&#099;&#111;&#109;">'+account+'&#064;&#098;&#111;&#114;&#115;&#099;&#104;&#098;&#097;&#099;&#104;&#046;&#099;&#111;&#109;</a>');
}



