$(document).ready(function(){
    
    $('UL.menu A').hover(function(){
        $(this).css({
            "background-color":'#003366',
            'color':'#FFF'
        });
    }, function(){
        $(this).css({
                'color':'#333'
             }).animate({
                'background-color': '#FFF'
                }, 
                {
                    duration: 500,
                    easing:'easeOutSine', 
                    complete: function() {}
                });
       
    });
		
});
