sfHover = function()
{
	var sfEls = document.getElementById("menuBar").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++)
	{
		if (sfEls[i].getElementsByTagName("LI").length > 0)
		{
			for (j=0; j<sfEls[i].childNodes.length; j++)
			{
				node = sfEls[i].childNodes[j];
				if (node.nodeName=="A")
				{
					node.className+=" daddy";
				}
			}
		}
		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);
