// JavaScript Document
// SF Hover (needed for IE6 :(
<!--//--><![CDATA[//><!--
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);
//--><!]]>

// Changes the class of a selected id, used for highlighting menu selections from included menus
//(created by SPP 02/08/06, updated 12/12/06 to load without "onLoad" function)

function change(id,className) {
    var identity = document.getElementById(id);
    if (identity != null) {
        identity.className = className;
    } else {
        identity = "none";
    }
}