function sfHover() {
	applyClass(document.getElementById("Vnav").getElementsByTagName("LI"),'sfhovers');
}

function applyClass(sfEls, newClassName){
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" " + newClassName;
		}
		sfEls[i].onmouseout=function() {
			var subst = " " + newClassName +"\\b";
			this.className=this.className.replace(new RegExp(subst), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
