$(document).ready(function(){

	//аутоподстройка товаров
	var autoresize = function(css_selector, min_width)
	{
		var center_width = $("#center-content").width();
		//alert(center_width);
		var count = center_width / min_width;
		var percent = Math.floor((100 / (Math.floor(count))));

		var percent = percent - 0.1;

		$(css_selector).width(percent + '%');

	}

	$(window).resize(function(){
		autoresize(".products .product", 357);
	});

	autoresize(".products .product", 357);

});

