 // javascript for the mmenu

mvHover = function() {
        var sfEls = document.getElementById("mvmnav").getElementsByTagName("LI");
        for (var i=0; i<sfEls.length; i++) {
            if ( sfEls[i].className != "menuseparator" ){
                sfEls[i].onmouseover=function() {
                        this.className+=" mvhover";
                }
                sfEls[i].onmouseout=function() {
                        this.className=this.className.replace(new RegExp(" mvhover\\b"), "");
                }
	   }
        }
}


if (window.attachEvent) window.attachEvent("onload", mvHover);
