// JavaScript Document

mpHover = function() {
	var mpEls = document.getElementById("dropdown").getElementsByTagName("LI");
	for (var i=0; i<mpEls.length; i++) {
		mpEls[i].onmouseover=function() {
			if(this.className == "haschild") {
				this.className+=" mphover";
			}
		}
		mpEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" mphover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", mpHover);
//--><!]]>