
function set_width()
{
  $(".tovar_all").css({ 'width': '100%' });
  var tovar_all_width = $(".tovar_all").width();
  var tovar_number = Math.floor(tovar_all_width / 202);
  var tovar_width = Math.floor(tovar_all_width / tovar_number);
  $(".tovar_all").css({ 'width': tovar_all_width });
  $(".tovar_all .for_center").css({ 'width': tovar_width });
}

$(document).ready(function(){
	set_width();
});

$(window).resize(function () {
	set_width();
});

