$(function(){

     $(".nav > li.link").hover(function(){
          $(this).css("background-color", "#fff");
          $(this).css("cursor", "pointer");
     },function(){
          $(this).css("background-color", "#dbe1f1");
     });
     
});
