$.fn.equalHeights = function(px) {
        var currentTallest = 0;
        $(this).each(function(i){
            if ($(this).height() > currentTallest) { currentTallest = $(this).height(); }
        });
        // for ie6, set height since min-height isn't supported
        if ($.browser.msie && $.browser.version == 6.0) { $(this).css({'height': currentTallest}); }
        $(this).css({'min-height': currentTallest});
    return this;
};
$(function(){ $('.block-content').equalHeights();});
