function equalHeight(group) {
    tallest = 0;
    group.each(function() {
        thisHeight = $(this).height();
        if (thisHeight > tallest) {
            tallest = thisHeight;
        }
    });
    group.height(tallest);
}





$(document).ready(function() {

    equalHeight($(".column"));

    var el = $('body.pg-home span.location');
    if (el.length >= 1) {
        el.each(function() {
            this.innerHTML = this.innerHTML.replace(/, United States/ig, '');
        }); //end:each inner
    } //end:if

    $('div#secondary div#s_membership a.btn').removeClass('btn').show().addClass('newBg');
    $('body.pg-forum #ft').show().appendTo('.container');


});