
sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);


/*
sf_rightHover = function() {
	var sf_rightEls = document.getElementById("nav_right").getElementsByTagName("LI");
	for (var j=0; j<sf_rightEls.length; j++) {
		sf_rightEls[j].onmouseover=function() {
			this.className+=" sf_righthover";
		}
		sf_rightEls[j].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sf_righthover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sf_rightHover);
*/
