navHover = function() {

	var liM = document.getElementById("mainmenu").getElementsByTagName("LI");
    
	liM[0].className += " first";
		
	for (var i=0; i<liM.length; i++) {
		
		liM[i].onmouseover=function() {
			this.className+=" iehover";
		}
		liM[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	}
    
    
	var liLang = document.getElementById("language").getElementsByTagName("LI");
    
	for (var i=0; i<liLang.length; i++) {
		liLang[i].onmouseover=function() {
			this.className+=" iehover";
		}
		liLang[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	}
    
    
	var liLoc = document.getElementById("location").getElementsByTagName("LI");
    
	for (var i=0; i<liLoc.length; i++) {
		liLoc[i].onmouseover=function() {
			this.className+=" iehover";
		}
		liLoc[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	}


/*Produkt Übersich menü*/


	var liM = document.getElementById("pr_overview_block").getElementsByTagName("LI");
    
	//liM[0].className += " first";
		
	for (var i=0; i<liM.length; i++) {
		
		liM[i].onmouseover=function() {
			this.className+=" iehover";
		}
		liM[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	}
    
    
}
if (window.attachEvent) window.attachEvent("onload", navHover);

