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

   	$("a.zoom").fancybox({
			'zoomSpeedIn'		:	500,
			'zoomSpeedOut'		:	500
	});
	
	$('.change_currency').click( function() {	
        $money = $(this).attr('name');
        window.location.href = 'changemoney.php?money='+$money;
	});
 });
