var today = new Date();

var months = new Array();
months[0] = "January";
months[1] = "February";
months[2] = "March";
months[3] = "April";
months[4] = "May";
months[5] = "June";
months[6] = "July";
months[7] = "August";
months[8] = "September";
months[9] = "October";
months[10] = "November";
months[11] = "December";

var month = today.getMonth();
var date = today.getDate();
var year = today.getYear();
if (year <= 1999) year += 1900; 
var todaysDate= months[month] + " " + date + ", " + year; 

//Menu Components
var validBrowser = false;
activate = false; //make sure page is fully loaded before activating menus

if (navigator.userAgent.substring(0,9) == "Mozilla/4") validBrowser = true;

var govcnt = 0;
function openMenu(menu, link){

	if(validBrowser) {
		if (activate) {
			displayMenu(menu); 
		}
		else {
			history.go(0);
                }
	}
	else {
		location.href = link;
	}
}		