/* Plugin to make variable height divs equal heights */

$.fn.sameHeights = function() {
	var tallest = 0;
	$(this).each(function(){
		$(this).children().each(function(i){
			if (tallest < $(this).height()) { tallest = $(this).height(); }
			
		});
		$(this).children().css({
			'height': tallest
		});
		$(this).children().show();
	});
	
return this;
};



