<!--//--><![CDATA[//><!--

sfHover = function() {
	var sfEls = document.getElementById("navSF").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);

sfHover2 = function() {
	var sfEls = document.getElementById("navSF2").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", sfHover2);


// searchBox
function showHide(shID) {
if (document.getElementById(shID)) {
    if (document.getElementById(shID+'Show').style.display != 'none') {
        document.getElementById(shID+'Show').style.display = 'none';
        document.getElementById(shID).style.display = 'block';
    }
    else {
        document.getElementById(shID+'Show').style.display = 'inline';
        document.getElementById(shID).style.display = 'none';
    }
  }
}


//--><!]]>


