// javascript hack to make flyout menu work in IE  

startList = function()
{
	if (document.all&&document.getElementById)
	{
		var navRoot = document.getElementById("nav");
		var linodes = navRoot.getElementsByTagName("li");
		for (var i=0; i<linodes.length; i++)
		{
			var node = linodes[i];
			node.onmouseover=function() { this.className="sfhover";}
			node.onmouseout=function() { this.className="";}
		}
	}
}
window.onload=startList;
