sfHoverH = function() {
	var uls = document.getElementsByTagName("ul");
	for (var i=0; i<uls.length; i++) {
		menuS = new RegExp("menuS");
		if (uls[i].getAttribute("className").match(menuS)) {

			var sfEls = uls[i].getElementsByTagName("li");
			for (var h=0; h<sfEls.length; h++) {
				sfEls[h].onmouseover=function() {
					this.className+=" sfhover";
				}
				sfEls[h].onmouseout=function() {
					this.className=this.className.replace(new RegExp(" sfhover\\b"));
				}
			}
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHoverH);

