function loadCalendar(url) {
    $.get(url, function(data) {
        $("#calendarContainer").html(data);
    });
}
