jQuery.fn.equalizeHeights = function() {
	return this.height(Math.max.apply(this, jQuery(this).map(function(i,e) { return jQuery(e).height() }).get()));
}
