ieHover = function() {
	var ieLIs = findDOM("Menu",0).getElementsByTagName("li");
	
	if(ieLIs) {
		for(var i = 0;i < ieLIs.length;i++) {
			if(ieLIs[i]) {
				ieLIs[i].onmouseover = function() { this.className += "Aktif"; }
				ieLIs[i].onmouseout  = function() { this.className = this.className.replace(new RegExp("Aktif\\b"),""); }
			}
		}
	}
}

if((navigator.userAgent.toLowerCase().indexOf("msie") != -1) && !(navigator.userAgent.toLowerCase().indexOf("opera") != -1)) {
	window.attachEvent("onload",ieHover);
}
