
var isIE = (navigator.appVersion.indexOf("MSIE") == -1) ? 0 : 1;

var timeOut = 0;
var lastHover = 0;
var hideLayer = true;

var d = function(id){return document.getElementById(id);}

function ieMenuHover()
{
	try{	
		var li = d('menu').getElementsByTagName('LI');
		for(var i = 0; i < li.length; i++)
		{
			li[i].onmouseover = function(){
				this.className += " iehover";
			}
			
			li[i].onmouseout = function(){
				this.className = this.className.replace(new RegExp(" iehover\\b"), "");
			}
		}
		
	}
	catch(e)
	{

	}
	
	
}

window.onload = function()
{
	if(isIE)
	{
		ieMenuHover();
	}
}
