$(document).ready(function() {
	if ($('#centrecolumn').height() > $('#leftcolumn').height()) {
		var colHeight = $('#centrecolumn').height();
		var tallCol = 'ctr';
	} else {
		var colHeight = $('#leftcolumn .leftmodule').height();
		var tallCol = 'left';
	}
	if ($('#rightcolumn').height() > colHeight) {
		colHeight = $('#rightcolumn').height();
		var tallCol = 'right';
	}
	

	$('#leftcolumn,#rightcolumn,#centrecolumn').css('min-height',colHeight+200);
});
