/*
* Plugin: Equal Heights // Version 1 // 11-9-2009
* Author: Eric Ditmer <http://ericditmer.com>
*/
(function ($) {
	$.fn.equalHeights = function() {
		var max_height = 0;
		var currentHeight = 0;
		
		this.each(function() {
			currentHeight = $(this).height();
			if(currentHeight > max_height) {
				max_height = currentHeight;
			}
		});
		this.each(function() {
			$(this).height(max_height);
		});
	};
})(jQuery);