$(document).ready(function(){
    $('#splash li.fidelidade a').hover(function(){
        $(this).fadeOut('slow', function(){
            $(this).css('background', 'url(./images/emporio_fidelidade.jpg) no-repeat bottom left');
            $(this).fadeIn('slow');
        });
    },
    function(){
        $(this).fadeOut('slow', function(){
            $(this).css('background', 'url(./images/emporio_fidelidade.jpg) no-repeat top left');
            $(this).fadeIn('slow');
        });
    });

    $('#splash li.emporio a').hover(function(){
        $(this).fadeOut('slow', function(){
            $(this).css('background', 'url(./images/emporio_guimaraes.jpg) no-repeat bottom left');
            $(this).fadeIn('slow');
        });
    },
    function(){
        $(this).fadeOut('slow', function(){
            $(this).css('background', 'url(./images/emporio_guimaraes.jpg) no-repeat top left');
            $(this).fadeIn('slow');
        });
    });

    $('#splash li.eventos a').hover(function(){
        $(this).fadeOut('slow', function(){
            $(this).css('background', 'url(./images/emporio_eventos.jpg) no-repeat bottom left');
            $(this).fadeIn('slow');
        });
        
    },
    function(){
        $(this).fadeOut('slow', function(){
            $(this).css('background', 'url(./images/emporio_eventos.jpg) no-repeat top left');
            $(this).fadeIn('slow');
        });
    });
});