(function($) {
 	
 	$.fn.equalHeights = function() {
 	
 		var targetHeight = 0;
 	
 		this.each(function() {
 			if ($(this).height() > targetHeight) targetHeight = $(this).height();
 		});
 	
 		this.each(function() {
 			$(this).height(targetHeight);
 		});
 	
 		return this;
 	};
 })(jQuery);
