function reloadCal(year, month) {
	$.get("reserve/calendar_get.php", { year: year, month: month },
		function(data){
			$('#reserve_cal').html(data);
		}
	 );
}

