function equalHeight(group) {
	var tallest = 0;
	group.each(function() {
		var thisHeight = jQuery(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.each(function() {

		if (jQuery.browser.msie && jQuery.browser.version <= 7.0) {
			group.css({'height': tallest} );
			} else {
				group.css({'min-height': tallest} );
			}
	});
}
