function ieHover() 
{
	var elements = new Array("LI");
	for (var jj=0; jj<elements.length; jj++) {
		var lis = document.getElementsByTagName(elements[jj]);
		for (var ii=0; ii<lis.length; ii++) {
			lis[ii].onmouseover=function() {
				this.className+=" hover";
			}
			lis[ii].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" hover\\b"), "");
			}
		}
	}
}
if (window.attachEvent) 
	window.attachEvent('onload',ieHover);

