jsHover = function() {        
				
				if (document.getElementById("leftmenu"))
				{
						var hEls2 = document.getElementById("leftmenu").getElementsByTagName("li");
						
						for (var i = 0, len = hEls2.length; i < len; i++) {
										hEls2[i].onmouseover = function() {
														this.className += " jshover";
										}
										
										hEls2[i].onmouseout = function() {
														this.className = this.className.replace(" jshover", "");
										}
						}
				}
				
}

if (window.attachEvent && navigator.userAgent.indexOf("Opera")==-1) window.attachEvent("onload", jsHover);
