(function ($) {
	$.fn.uniformHeight = function () {
		var maxHeight = 0;

		$(this)
			.each(function () {
				$(this).height('auto');
				maxHeight = Math.max(maxHeight, $(this).height());
			})
			.each(function () {
				$(this).height(maxHeight);
			});
	};
}(jQuery));

