<!--//--><![CDATA[//><!--

ieHover = function() {

	var ieLIs = document.getElementById('menu').getElementsByTagName('li');

	for (var i=0; i<ieLIs.length; i++) if (ieLIs[i]) {

		ieLIs[i].onmouseover=function() {

			this.className="over";

		}

		ieLIs[i].onmouseout=function() {

			this.className=" ";

		}

	}
}

if (window.attachEvent) window.attachEvent('onload', ieHover);

//--><!]]>