/**
 * Equal Heights Plugin
*/

(function($) {
	$.fn.equalHeights = function() {
		tallest = 0;
		this.each(function() {
			//console.log($(this).height());
			if($(this).height() > tallest) {
				tallest = $(this).height();

			}
		});
		return this.each(function() {
			$(this).height(tallest);
		});
	}
})(jQuery);
