function initAll()
{
	function dropDown()
	{
		document.getElementById(this.id+"Con").style.display="block";
	}

		function pullUp()
	{
		document.getElementById(this.id+"Con").style.display="none";
	}

	for (var i=0; i<=2; i++)
	{
		document.getElementById("drop"+i).onmouseover=dropDown;
		document.getElementById("drop"+i).onmouseout=pullUp;
	}
}

window.onload=initAll;

function resetAll()
{
	for (var j=0; j<=2; j++)
	{
		document.getElementById("drop"+j+"Con").style.block="none";
	}
}
window.onunload=resetAll;

//footer current date
var currentDate = new Date();
var currentYear = currentDate.getFullYear();
