$(document).ready(function(){

//	$('table#search-result-table tr.product').each(function(){
//		var thisheight = $(this).height();
//		var productdescriptionHeight = $(this).children('div.productdescriptionWrapper').height();
//		var outheight = (thisheight + productdescriptionHeight +15) + "px";
//		
//		$(this).css("height", outheight);
//		
//		
//	});
	fixProductDetailsRow();
});



function fixProductDetailsRow()
{
			$('tr.product-detailsrow').each(function(){
			var p = $(this).find('div.productdescription').height();
			var e = ((p + 30) + "px");
			$(this).children("td").css("padding-bottom", e);

		});
}
