$(document).ready(function() {


var el = $('div#s_messageboard p:odd');
if (el.length >= 1) {
    el.each(function() {
        str = $(this).text();
        $(this).text(str.substring(0, 50) + "...");
    }); //end:each
} //end:if

    var el = $('body.pg-home div#s_messageboard');
    if (el.length >= 1) {
        el.each(function() {
        this.innerHTML = this.innerHTML.replace(/\(GMT-08:00\)/ig, '');
        }); //end:each inner
    } //end:if

    var el = $('body.pg-home div#s_events span.location');
    if (el.length >= 1) {
        el.each(function() {
            this.innerHTML = this.innerHTML.replace(/, United States/ig, '');
        }); //end:each inner
    } //end:if

});


$(document).ready(function() {
    try {
        var el = $('#tv_evetns #s_events > h4');
        el.length >= 1 ? $('#tv_evetns').show() : $('#tv_evetns').hide();
    }
    catch (e) {
        return false;
    }

    try {
        $("#tabs").tabs();
        $("#tabs").tabs('select', 0);
    }
    catch (e) {
        return false;
    }
    
    
}); //end:DOM ready
