function calendarOver(cal_day) {
	var thisDay = document.getElementById(cal_day);
	thisDay.style.backgroundColor = '#103175';
}

function calendarOverEvent(cal_day) {
	var thisDay = document.getElementById(cal_day);
	thisDay.style.backgroundColor = '#0d2352';
}

function calendarOut(cal_day) {
	var thisDay = document.getElementById(cal_day);
	thisDay.style.backgroundColor = '#F0F0F0';
}

function calendarOutEvent(cal_day) {
	var thisDay = document.getElementById(cal_day);
	thisDay.style.backgroundColor = '#284f9e';
}

function calendarTodayOut(cal_day) {
	var thisDay = document.getElementById(cal_day);
	thisDay.style.backgroundColor = '#AAD4EC';
}

function calTest() {
	alert("test");
}