$(document).ready(function(){
  $("#featured-products_block_center li").hover(function()       {
    $(this).find(".product-info").stop().animate({left:'0'},500,'easeOutQuad');
  }, function(){
 $(this).find(".product-info").stop().animate({left:'-229'},500,'easeInOutQuad');
})
 });
