// IE6 Hack pentru CSS meniul din header - hack pentru li:hover

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

