// still working on this - new to the prototype stuff :P
flyoutHover = function()
{
	var flyoutboxes = document.getElementById("flyouts").getElementsByTagName("DIV");
	for (var i=0; i<flyoutboxes.length; i++)
	{
		var thespan = flyoutboxes[i].getElementsByTagName("SPAN")[0];//.id || "";

		// What IE Needs
		if ( window.attachEvent )
		{
			flyoutboxes[i].onmouseover=function()
			{
				this.className+=" sfhover";

			}
			flyoutboxes[i].onmouseout=function()
			{
				this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
			}
		}
		// Mozilla/etc needs
		else if ( window.addEventListener )
		{
			flyoutboxes[i].onmouseover = function()
			{
				//Element.hide(thespan);
				//new Effect.BlindDown(thespan);
			}
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", flyoutHover);
else window.addEventListener("load", flyoutHover, false);
