(function (a) { a.fn.equalHeights = function (b, c) { tallest = b ? b : 0; this.each(function () { if (a(this).height() > tallest) { tallest = a(this).height() } }); if (c && tallest > c) tallest = c; return this.each(function () { a(this).height(tallest).css("overflow", "auto") }) } })(jQuery)
