// JavaScript Document
<!-- 
var timer;
function displaySub(whichSub,whatMsg) {
	hideSub();
	var menu = document.getElementById(whichSub);
	clearTimeout(timer);
	menu.style.display = "block" ;
}
function startTimer() {
	timer = setTimeout("hideSub()", 250);
}
function hideSub() {
	var menuName;
	for(var i=1; i <=4; i++) {
		menuName = document.getElementById("subNav"+i);
		menuName.style.display = "none" ;
	}
}
function keepSub() {
	clearTimeout(timer);
}
function msgDisplay(whatMsg) {
	window.status = whatMsg;
	return true;
}
-->

