(function($){
	$.fn.equalHeight = function(){
		var group = this;
		
		tallest = 0;
		extended = 0;
		group.each(function() {
			thisHeight = jQuery(this).height();
			if(thisHeight > tallest) {
				tallest = thisHeight;
			}
		});
		group.height(tallest);
	};
})(jQuery);

