jsHover = function() {
	var a = document.getElementById("menu").getElementsByTagName("li");
	for (var i=0; i<a.length; i++) {
		a[i].onmouseover=function() {
			this.className="jsHover";
			}
		a[i].onmouseout=function() {
			this.className="";
			}
/*		setTimeOut("a["+(string)i+"].onmouseout",100); */
	}
}
if (window.attachEvent) window.attachEvent("onload", jsHover);
