/*
    Created By Steven Bower
    TurnWheel.com
*/

$(function() {
    $('#holidaylinks a').mouseover(function() {
        var day = $(this).text().toString();
        
        $('#holidayimg').attr('src','/images/holidayschedule_'+day.toLowerCase()+'pickup.gif')
                        .attr('alt',day+' Schedule')
                        .attr('title',day+' Schedule');
        $('#holiday').text(day);
    });
});