 <!--//

function HideContent(d) {
/*if(d.length < 1) { return; }*/
document.getElementById(d).style.visibility = "hidden";
}
function ShowContent(d) {
/*if(d.length < 1) { return; }*/
document.getElementById(d).style.visibility = "visible";
}



startList = function() {
var agt=navigator.userAgent.toLowerCase();

	if (document.all && document.getElementById) {
		navRoot = document.getElementById("nav");
		flashDiv = "flashcontent";
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
					if ((document.getElementById) && (agt.indexOf("safari") != -1) ) {
					
					HideContent(flashDiv);
					}
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
					if ((document.getElementById) && (agt.indexOf("safari") != -1) ) {
					
					ShowContent(flashDiv);
					}
				}
			}
		}
	}
	//Set focus on Search Box; unrelated to navigation but piggybacking on the onload event.
	document.getElementById("search_text").focus();
}

function startLoad() {
startList();
}
window.onload = startLoad;

try {
  document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}

//-->
