$(function(){
    
    $('#header').append('<div class="navigationshadow" />');
    
    // Evento de sobreposição
    $('#navigation li:has(ul)').hover(function(){
    
        $(this).stop().animate({ top: '10px' },'slow','easeOutBounce');

    
    },function()  { // Saindo do evento de sobreposição
    
        $(this).stop().animate({ top: '85px' },'slow','easeOutBounce');
    
    })
    
    
    // Evento de sobreposição
    $('#navigation li:not(:has(ul))').hover(function(){
    
        $(this).stop().animate({ top: '65px' },'slow','easeOutBounce');

    
    },function()  { // Saindo do evento de sobreposição
    
        $(this).stop().animate({ top: '85px' },'slow');
    
    })

})
