fPokaji = function() {
	var vIdMenu = document.getElementById("lqvomenu").getElementsByTagName("LI");
	for (var i=0; i<vIdMenu.length; i++) {
		vIdMenu[i].onmouseover=function() {
			this.className+=" otgore";
		}
		vIdMenu[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" otgore\\b"), "");
		}
	}
}
if(navigator.userAgent.indexOf("Firefox")==-1){ if (window.attachEvent) window.attachEvent("onload", fPokaji) };

