
$(function() {
	var height = 0;
	$('.columnPresentations .description').each(function(){
		if($(this).height() > height)
			height = $(this).height();
	});
	$('.columnPresentations .description').css('height', height);
});
