$(document).ready(function(){
  $("#featured-products_block_center li").hover(function()       {
    $(this).find(".extra_name").stop().animate({bottom:'61'},500,'easeOutBack');
  }, function(){
 $(this).find(".extra_name").stop().animate({bottom:'-61'},500,'easeInBack');
})
 });
