﻿(function ($) {

    $.fn.equalHeight = function () {
        var tallest = 0;

        this.each(function () {
            var height = $(this).height();

            if (height > tallest) {
                tallest = height;
            }
        });

        this.css({ 'min-height': tallest });
    }

})(jQuery);
