﻿function equaliseHeights(cols) {
	var height = 0;
	
	cols.each( function() {
		if ($(this).height() > height) height = $(this).height();
	});
	
	cols.each( function() {
		$(this).css('height', height);
	});
}
