function setBlockHeight(){
	contentheight = 0;
	$(".goods").each(function(ind, el){
		height = $(el).height();
		if (height > contentheight)
			contentheight = height;
	});
	$(".goods").css({'height' : contentheight});
}
$(document).ready(function() {
var contentheight = 0;
$(".goods .name").each(function(ind, el){
	height = $(el).height();
	if (height > contentheight)
		contentheight = height;
});
$(".goods .name").css({'height' : contentheight});

$(".goods .maincatalogimage").each(function(ind, el){
	height = $(el).height();
	if (height > contentheight)
		contentheight = height;
});
$(".goods .maincatalogimage").css({'height' : contentheight});


});


