	xsHover = function() {
		if(document.getElementById("langSprache") != null){
			var xsEls = document.getElementById("langSprache").getElementsByTagName("LI");
			
			for (var i=0; i<xsEls.length; i++) {
				xsEls[i].onmouseover=function() { 
				this.className+=" xshover";
				}
				xsEls[i].onmouseout=function() { this.className=this.className.replace(new RegExp(" xshover\\b"), ""); }
			}
		}
		if(document.getElementById("navmenu") != null){
			var xsEls = document.getElementById("navmenu").getElementsByTagName("LI");
			for (var j=0; j<xsEls.length; j++) {
				if (xsEls[j].className == "expand") {
					xsEls[j].onmouseover = function(){ this.className += " expandhover xs2hover"; }
					xsEls[j].onmouseout = function(){ this.className = this.className.replace(new RegExp(" expandhover xs2hover\\b"), ""); }
				}
				else {
					xsEls[j].onmouseover = function(){ this.className += " xs2hover"; }
					xsEls[j].onmouseout = function(){ this.className = this.className.replace(new RegExp(" xs2hover\\b"), ""); }
				}
			}
		}
		if(document.getElementById("help") != null){
			var xsEls = document.getElementById("help").getElementsByTagName("LI");
			for (var i=0; i<xsEls.length; i++) {
				xsEls[i].onmouseover=function() { this.className+=" xs4hover"; }
				xsEls[i].onmouseout=function() { this.className=this.className.replace(new RegExp(" xs4hover\\b"), ""); }
			}
		}
		if (document.getElementById("memo") != null) {
			var xsEls = document.getElementById("memo").getElementsByTagName("LI");
			for (var i=0; i<xsEls.length; i++) {
				xsEls[i].onmouseover=function() { this.className+=" xs3hover"; }
				xsEls[i].onmouseout=function() { this.className=this.className.replace(new RegExp(" xs3hover\\b"), ""); }
			}
		}
		
		if(document.getElementById("myacc")) {
			var xsEls = document.getElementById("myacc").getElementsByTagName("LI");
			for (var i=0; i<xsEls.length; i++) {
				xsEls[i].onmouseover=function() { this.className+=" xs5hover"; }
				xsEls[i].onmouseout=function() { this.className=this.className.replace(new RegExp(" xs5hover\\b"), ""); }
			}
		}
		if(document.getElementById("ie_hover_fix")){
			var xsEls = document.getElementById("ie_hover_fix").getElementsByTagName("LI");
			for (var j=0; j<xsEls.length; j++) {
				
				xsEls[j].onmouseover=function() { this.className+=" xs6hover"; }
				xsEls[j].onmouseout=function() { this.className=this.className.replace(new RegExp(" xs6hover\\b"), ""); }
			}
		}
	}
	if (window.attachEvent){
		if (navigator.appName.toLowerCase() != "opera"){
			window.attachEvent("onload", xsHover);
		}
	}