function equalColumns(colGroup) {
	var tallestCol = 0;
	colGroup.each(function(){
		var thisCol = $(this).height();
		if (thisCol > tallestCol) {
			tallestCol = thisCol;
		}
	});
	colGroup.height(tallestCol);
}

