/*--suckerfish top--*/
sfHover = function() {
	var sfEls = document.getElementById("nav").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: GetSetVerticalScrollPos
 * Purpose: Save the scroll position of the current form
 * Parameter: mode: 0 = restore, 1 = save
 * Note: Requires a hidden input field on the form...
 *       <input id="VerticalScrollPos" type="hidden" name="VerticalScrollPos" runat="server">
 */
function GetSetVerticalScrollPos(mode)
{
	f = document.forms[0]
	pos = 0;
    	
	if (window.pageYOffset)
	{
		pos = window.pageYOffset;
	}
	else if (document.documentElement && document.documentElement.scrollTop)
	{
		pos = document.documentElement.scrollTop;
	}
	else if (document.body)
	{
		pos = document.body.scrollTop;
	}

	if (mode == 0 && f.VerticalScrollPos != "")
		scrollTo(0, f.ctl00_VerticalScrollPos.value)
	else if (mode == 1)
		f.ctl00_VerticalScrollPos.value = pos;
		
	setTimeout("GetSetVerticalScrollPos(1)", 500)
}



/*--end suckerfish top--*/


