 $(document).ready(function(){    
         $(".name").hide(0);    
       $(".center-block").mouseover(function(event){
             $(this).find(".block_img").stop().animate({opacity: 0.2}, 500);
             $(this).find(".name").show(0);
       });
       $(".center-block").mouseout(function(event){
             $(this).find(".block_img").stop().animate({opacity: 1}, 500);
             $(this).find(".name").hide(0);
       });

     });     
