function equalHeight(group) {
	var max = 0;
	group.each(function() {
		var h = jQuery(this).height();
		if(h > max) {
			max = h;
		}
	});
	group.height(max);
};

