$(window).load(function() {
    var maxHeight = 0;
    
    $(".schedule-display-wrapper").each(function(i) {
        if($(this).height() > maxHeight) {
            maxHeight = $(this).height();
        }
    });
    
    $("#schedule-tabs").css("height", maxHeight + "px");
});

function activateTab(id) {
    $(".schedule-display-wrapper").addClass('hidden');
    $("#" + id).removeClass("hidden");
    
    $(".event-select-tab").removeClass("active");
    $("#" + id + "-tab").addClass("active");
    
}
