var ieHover = function() {
		var LIs = document.getElementsByTagName("LI");
		for (i=0; i<LIs.length; i++) {
			LIs[i].onmouseover= function() {this.className += " hover";}
			LIs[i].onmouseout = function() {this.className = this.className.replace(" hover", "");  }
		}
	
		var TRs = document.getElementsByTagName("TR");
		for (i=0; i<TRs.length; i++) {
			TRs[i].onmouseover= function() {this.className += " hover";}
			TRs[i].onmouseout = function() {this.className = this.className.replace(" hover", "");  }
		}
}
if (window.attachEvent) window.attachEvent("onload", ieHover);