var oBtnAllEvents = null;

$(document).ready(function() {

    oBtnAllEvents = $('#fakeBtnAllEvents');

    oBtnAllEvents.bind('mouseover', function() {
        $(this).attr('src', btnAllEvents1Url);
    })
    oBtnAllEvents.bind('mouseout', function() {
        $(this).attr('src', btnAllEventsUrl);
    });
    oBtnAllEvents.bind('click', function() {
        window.location = eventsBaseUrl;
    });
    
});