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



