// SIDE NAV MENU
var navMenu=new Array()
navMenu[0] = 'calendar';
navMenu[1] = 'news';
navMenu[2] = 'tickets';

var navNum = navMenu.length;

function DnavMenu(divId) {
	hideAll();
	//var theDiv = document.getElementById(divId);
	document.getElementById(divId).style.display = "block";
	//divId.style.display = "block";
}
function hideAll() {
	var i = 0;
	for(i; i < navNum; i++){
		var theDiv = document.getElementById(navMenu[i])
		theDiv.style.display = "none";
	}
}
