﻿/// <reference path="jquery-1.3.2.min.js" />
String.prototype.trim = function() { return this.replace(/^\s+|\s+$/g, ''); };

(function($) {
    $(document).ready(function() {
        //hide testimonials if there isn't one
        if ($(".testimonials .tContent").text().trim() == "") {
            $(".testimonials").hide();
        }
    });
})(jQuery);