// get current year
now = new Date;

thisYr = now.getYear();

if (thisYr < 1900) {
thisYr = thisYr + 1900;
}	

function hideMenu(){
	document.getElementById("dropMenu").style.visibility = "hidden";
}


function showMenu(){
	document.getElementById("dropMenu").style.visibility = "visible";
}