jQuery(function($) {
	var col_h = 0;
	$('.content-col').each(function() {
		col_h = ($(this).height() > col_h) ? $(this).height() : col_h;
	})
	$('.content-col').each(function() {
		$(this).height(col_h);
	});
});