function goDay(day,month,year) {
	location.href = "calendar_view_day_events.php?day=" + day + "&month=" + month + "&year=" + year;
}

function overCell(cell) {
	if(cell.getAttribute((document.all ? 'className' : 'class')) == 'today') {
		cell.setAttribute((document.all ? 'className' : 'class'), "todayOver");
	} 
	else if(cell.getAttribute((document.all ? 'className' : 'class')) == 'sunday') {
		cell.setAttribute((document.all ? 'className' : 'class'), "sundayOver");
	}
	else if(cell.getAttribute((document.all ? 'className' : 'class')) == 'daily') {
		cell.setAttribute((document.all ? 'className' : 'class'), "dailyOver");
	}
}

function outCell(cell) {
	if(cell.getAttribute((document.all ? 'className' : 'class')) == 'todayOver') {
		cell.setAttribute((document.all ? 'className' : 'class'), "today");
	} 
	else if(cell.getAttribute((document.all ? 'className' : 'class')) == 'sundayOver') {
		cell.setAttribute((document.all ? 'className' : 'class'), "sunday");
	}
	else if(cell.getAttribute((document.all ? 'className' : 'class')) == 'dailyOver') {
		cell.setAttribute((document.all ? 'className' : 'class'), "daily");
	}
}