jQuery.easing.easeOutQuart = function (x, t, b, c, d) {
	return -c * ((t=t/d-1)*t*t*t - 1) + b;
};

jQuery(function( $ ){
	$('.product_list a img').each(function () {
		if($(this).width() > $(this).height()) 
			$(this).width(156);
		else	
			$(this).height(156);
		$(this).show();	
	});
});
