function menuFix() {

	var sfEls = document.getElementById("MymenuObj").getElementsByTagName("li");

	for (var i=0; i<sfEls.length; i++) {

		sfEls[i].onmouseover=function() {

			this.style.background="#ffffff";

			this.style.color="#c07740";
			this.style.padding="0px";

			if(this.getElementsByTagName("ul").length){

				this.getElementsByTagName("ul")[0].style.display="block";

			}

		};

		sfEls[i].onmouseout=function() {

			this.style.background="none";

			this.style.color="#757167";

			if(this.getElementsByTagName("ul").length){

				this.getElementsByTagName("ul")[0].style.display="none";

			}

		};

	}

}

window.onload=menuFix;
