function ieHover() {
	var _menu = document.getElementById('navigation');
	if(_menu){
		_list = _menu.getElementsByTagName('li');
		for(var i = 0; i < _list.length; i++){
			_list[i]._box = _list[i].getElementsByTagName('div')[0];
			_list[i].onmouseover = function(){
				displayEl(this);
			}
			_list[i].onmouseout = function(){
				hideEl(this);
			}
		}
	}
	function displayEl(_el){
		if(_el.t) clearTimeout(_el.t);
		_el.t = setTimeout(function(){
			if(_el.className.indexOf('hover') == -1){
				_el.className += ' hover';
				if(_el._box) hideSelectBoxes(_el._box);
			}
		}, 100);
	}
	function hideEl(_el){
		if(_el.t) clearTimeout(_el.t);
		_el.t = setTimeout(function(){
			_el.className = _el.className.replace('hover', '');
			if(_el._box) showSelectBoxes(_el._box);
		}, 100);
	}
}
if (window.attachEvent && !window.opera) window.attachEvent("onload", ieHover);