jQuery.fn.equalHeight = function () {
	var height		= 0;
	var maxHeight	= 0;

	this.each(function () {
		height		= $(this).outerHeight();
		maxHeight	= (height > maxHeight) ? height : maxHeight;
	});

	return this.each(function () {
		var t			= $(this);
		var tb		= $(this).find('div.imgbox');
		var minHeight	= maxHeight - (t.outerHeight() - t.height());
		var tbHeight	= tb.height() + (maxHeight - t.height());
		var property	= jQuery.browser.msie && jQuery.browser.version < 7 ? 'height' : 'height';

		t.css(property, minHeight + 'px');
		tb.css('height', tbHeight-20 + 'px');
	});
};

$(document).ready(function() { 

	$('.productslist .productbox').equalHeight();
	var highestCol = Math.max($('#content').height(),$('#left').height());
	$('#content').height(highestCol);
	$('#left').height(highestCol);
	
});