$(document).ready(function() {    var el = $('div.messageboard p.s_comment');    if (el.length >= 1) {        el.each(function() {            str = $(this).text();            $(this).text(str.substring(0, 50) + "...");        }); //end:each    } //end:if    var el = $('div.messageboard .s_date');    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    try { $('body.pg-home div#s_events div.s_singleEvent:odd').addClass('odd'); }    catch (e) { return false; }});
