$(function(){
    //
    // Adjusts height of given block elements to equal (max) value
    //
    // @example $('.someClass').equalHeight();
    //
    $.fn.equalHeight = function() {
        var _self = $(this),
            _maxHeight = 0;
        // Begins loop to compare heights
        _self.each(function(){
            if ($(this).height() > parseInt(_maxHeight)) {
                _maxHeight = $(this).height();
            }
        });
        _self.height(_maxHeight);
    };

});
