	sfHover = function() {
	var sfEls = document.getElementById("navMenu").getElementsByTagName("li");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
			this.firstChild.className = "white";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
			this.firstChild.className = "";
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

function toggleFontColor(id)
{
	//alert(id);
	var el = document.getElementById(id);
	if(el.className == "white")
	{
		el.removeAttribute("class");
	}
                else
                {
                                el.className = "white";
                }
}

