

function CatProdFixes()
{
	SetProductNameDivSize('div#mwrc_category_listing');
	SetProductNameDivSize('div#mwrc_product_listing');	
}

function SetProductNameDivSize(container)
{
	var max_img_width = 0;
	var max_img_height = 0;
	
	var li_img = $$(container + ' li.mwrc_listing a img');
	var li_div = $$(container + ' li.mwrc_listing div.mwrc_listing_product_name');
	var li_div_img = $$(container + ' li.mwrc_listing div.mwrc_listing_product_image');
	
	li_img.each(function(item)
	{
		if(max_img_width < item.width) max_img_width = item.width;
		if(max_img_height < item.height) max_img_height = item.height;
	});
	
	if(max_img_width < 100) max_img_width=100;
	
	li_div.each(function(item)
	{
		item.style.width = max_img_width+'px';
	});
	
	li_div_img.each(function(item)
	{
		item.style.width = max_img_width+'px';
		item.style.height = max_img_height+'px';
	});
	
	MaxWidthHeight(container + ' li.mwrc_listing', 10, 0);
}
