(function($){
    $.fn.nederenamEqualHeight = function() {

        var highest = 0;
        
        this.each(function(){
            if ($(this).height() > highest)
                highest = $(this).height();
        });
    
        this.height(highest);
        
    };
})(jQuery);
