$(function(){
$('div#rss_block_left ul li').last(1).addClass('last_item');
});

$(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');
})
 });
