//drop down navigation state for IE6
sfHover = function() {
	var sfEls = document.getElementById("navigation").getElementsByTagName("LI");
	for (var i=0; i < sfEls.length; i++) {
		sfEls[i].onmouseout=function() { this.className = this.className.replace(new RegExp(" sfhover\\b"), ""); }
		sfEls[i].onmouseover=function() { this.className += " sfhover"; }
	}
}
if(window.attachEvent) window.attachEvent("onload", sfHover);


//drop down jump menu function
function jumpTo(form) {
	var tempIndex = form.loginSelect.selectedIndex;
	if(tempIndex == 0) {
		//nothing happens
	}
	else {
		jumpUrl = form.loginSelect.options[tempIndex].value;
		window.location.assign(jumpUrl);
	}
}