<!-- Hide script from older browsers

/* This series of functions toggle the navigation rollovers */

    var id1=-100;
	var id2=-100;

	function clearTime(){
		clearTimeout(id1);
		clearTimeout(id2);
	}

	function displayMenu(displayedMenu,indicatorSource) {
		if (document.getElementById) {
			clearTime();
			thisMenu = document.getElementById(displayedMenu).style
			id1=window.setTimeout('return thisMenu.display = "block"',750)
			img="images/indicatorDn.gif";
			id2=window.setTimeout("document.getElementById('"+indicatorSource+"').src='"+img+"'",750);
		}
	}



/* This series of functions controls the indicators that manually toggle each submenu */

	function toggleMenu(currMenu,indicatorSource) {
		if (document.getElementById) {
			thisMenu = document.getElementById(currMenu).style
			if (thisMenu.display == "block") {
				thisMenu.display = "none"
				indicatorSource.src="images/indicator.gif"
			}
			else {
				thisMenu.display = "block"
				indicatorSource.src="images/indicatorDn.gif"
			}
			return false
		}
		else {
			return true
		}
	}

// End hiding script -->