// Animação do menu
$(function(){
    $('#menu-itens a').hover(function(){
        $(this).stop().animate({color: '#63C45F'}, 'slow');
    },function(){
        $(this).stop().animate({color: '#1D7EC3'}, 'slow');
    });
});
