// equalize column heights with Jquery instead of prototype

function equalHeight(group){

    tallest = 0;

    group.each(function(){

        thisHeight = $(this).height();

        if (thisHeight > tallest) {

            tallest = thisHeight;

        }

    });

    group.height(tallest);

}



// auto equalize the help boxes

$(document).ready(function(){

    if ($(".equalize").length) {

        equalHeight($(".equalize"));

    }

});



