(function($) {
	// equal heights
	jQuery.fn.equalHeight = function () {
		var h = 0;
		return this.each(function (i, e) {
			var height = $(e).height();
			if (height > h) {
				h = height;
			}
		}).height(h);
	};
}(this.jQuery));
