sfHover = function() {
	if (document.getElementById("menu") == null) return 0;
	var sfEls = document.getElementById("menu").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
			fc = this.firstChild;
			fc.className += " sfhoverc";
			fcc = this.lastChild;
			fcc.className += " sfhovercc";
		}

		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
			fc = this.firstChild;
			fcc = this.lastChild;
			fc.className=this.className.replace(new RegExp(" sfhoverc\\b"), "");
			fcc.className=this.className.replace(new RegExp(" sfhovercc\\b"), "");
		}
	}
	/*var sfEls1 = document.getElementById("menu-left").getElementsByTagName("LI");
	for (var i=0; i<sfEls1.length; i++) {
		sfEls1[i].onmouseover=function() {
			this.className+=" sfhover1";
		}
		sfEls1[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover1\\b"), "");
		}
	}*/
}
