// function navRHover() {	// var lis = document.getElementById("navmenu-r").getElementsByTagName("li");	// for (var i=0; i<lis.length; i++) {		// var innerLis = lis[i].getElementsByTagName("li");		// lis[i].className="iehover"+innerLis.length;	// }// }// window.onload=function(){	// navRHover();// }navHover = function() {	var nav = document.getElementById("navmenu-r")	if (nav != null)	{		var lis = nav.getElementsByTagName("LI");		if (lis != null)		{			for (var i=0; i<lis.length; i++) {				lis[i].onmouseover=function() {					//var innerLis = lis[i].getElementsByTagName("li");					this.className+=" iehover";				}				lis[i].onmouseout=function() {					this.className=this.className.replace(new RegExp(" iehover\\b"), "");				}			}		}	}}function navRHover() {	var nav = document.getElementById("navmenu-r")	if (nav != null)	{		var lis = nav.getElementsByTagName("li");			if (lis != null)		{			for (var i=0; i<lis.length; i++) {				var innerLis = lis[i].getElementsByTagName("li");				lis[i].className="iehover"+innerLis.length;			}				}	}}function addLoadEvent(func){ 	var oldonload = window.onload; 	if (typeof window.onload != 'function') { 		window.onload = func; 	} else { 		window.onload = function() { 			oldonload(); 			func(); 		} 	} }addLoadEvent(navRHover);if (window.attachEvent) window.attachEvent("onload", navHover);
