ieHover = function() 
{
	var bName = document.getElementById("menu").getElementsByTagName("LI");
	for (var i=0; i<bName.length; i++) 
		{
			bName[i].onmouseover = function()
				{
					this.className+=" over";
				}

			bName[i].onmouseout = function() 
				{
					this.className = this.className.replace(new RegExp(" over\\b"), "");
				}
		}
}

if (window.attachEvent) 
	window.attachEvent("onload", ieHover);