function updateCalendar(month) {

// moves the calendar back or forwards by one month

var updateUrl = "podhawk/ajax/updatecalendar.php?cal=" + month;
$.getJSON(updateUrl, function(data) {
	$('#calendar').empty();
	$('#calendar').append(data.html);
	});
}
