/*
	Suckerfish drop downs. This is the handler for Windows IE, 
 	which doesn't support the :hover pseudo selector on anything but "a" tags
*/
sfHover = function() 
{
	var sfEls = document.getElementById("sitenavigation").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) 
	{
		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);

/* 
function pops up a new window to hold forms and the like 
*/

function fPopUp(fUrl)
{
	window.open(fUrl,'fPopUp','width=620,height=400,resizable=1,scrollbars=yes,menubar=no,status=yes');
	return true;
}

