jQuery(document).ready(function() {
    // Change the color of the un-classed header on the event calendar
    jQuery('.eventsCalendar table:first tr:first td:first td').css('color', '#683600'); 
    
    // Remove the background on the top header of the event calendar
    jQuery('.eventsCalendar table:first tr:first td:first').css('background-color', 'transparent'); 
});

