$(document).ready(function(){
    $('body').addClass('jquery-support');
});

$(window).load(function(){
    
    $( '#globalNavigation a' ).hover(
        function() {
            $(' > span', this ).stop().animate({ opacity: 0 }, '250');
        },
        function() {
            $(' > span', this ).stop().animate({ opacity: 1 }, '250');
        }
    );

});
