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);

numdashitems = 5;
function opendash() {
	document.getElementById("dashboardinner").style.visibility="visible";
//	document.dashboardcap.src = (document.dashboardcap.src.indexOf("dwn") > -1) ? "images/dshbrd_head_finhili_rght.jpg" : "images/dshbrd_head_finhili_dwn.jpg";
	if (document.dashboardcap.src.indexOf("dwn") > -1) {
	//open it
		document.dashboardcap.src = "images/dshbrd_head_finhili_rght.gif";
		document.getElementById("dashboardinner").style.display="none";
		
	} else {
	//close it
		document.dashboardcap.src = "images/dshbrd_head_finhili_dwn.gif";
		document.getElementById("dashboardinner").style.display="block";
	}
	
}

function toggledashitem(itemnum) {
	for (x = 1; x <= numdashitems; x++) {
		document.getElementById("dashsection"+x).style.backgroundImage = "url(images/dshbrd_cursor_wht_rght.gif)";
		document.getElementById("dashsectioninner"+x).style.display = "none";
		document.getElementById("dashsectionlink"+x).style.color = "#FFFFFF";
		document.getElementById("dashsection"+x).style.backgroundColor = "#999999";
		
	}
	document.getElementById("dashsection"+itemnum).style.backgroundImage = "url(images/dshbrd_cursor_dkgry_dwn.gif)";
	document.getElementById("dashsectioninner"+itemnum).style.display = "block";
	document.getElementById("dashsectionlink"+itemnum).style.color = "#666666";
	document.getElementById("dashsection"+itemnum).style.backgroundColor = "#F1F1F1";
}

function initDashboard () {
	for (x = 1; x <= numdashitems; x++) {
		document.getElementById("dashsection"+x).style.backgroundImage = "url(images/dshbrd_cursor_wht_rght.gif)";
		document.getElementById("dashsectioninner"+x).style.display = "none";
		document.getElementById("dashsectionlink"+x).style.color = "#FFFFFF";
		document.getElementById("dashsection"+x).style.backgroundColor = "#999999";
	}
	document.getElementById("dashboardinner").style.display = "none";
}

function openHome()
{
document.write ('<object type="application/x-shockwave-flash" data="swf/HomeIntro.swf" width="539" height="379" VIEWASTEXT>');
document.write ('<param name="movie" value="swf/HomeIntro.swf" />');
document.write ('<param name="wmode" value="transparent" />');
document.write ('<param name="quality" value="high" />');
document.write ('</object>');
}
