$(document).ready(function(){
   $(".des").hover(function() {
      $(this).stop().animate({ backgroundColor: "#333"}, 200);
      },function() {
      $(this).stop().animate({ backgroundColor: "#111" }, 500);
   });
}); 
