var columns = $('.column-class');
var biggestColumn = 0, currentHeight;
columns.each(
function () {
currentHeight = $(this).height();
if (currentHeight > biggestColumn) {
biggestColumn = currentHeight;
}
}
);
columns.height(biggestColumn);