 $(document).ready(function(){  
        $("#nav ul li a.fade").hover(function() {  
                $(this).stop().animate({ backgroundColor: "#adcdf1"}, 300);  
                },function() {  
                $(this).stop().animate({ backgroundColor: "#80B5F1" }, 300);  
                });  
     });  
