/*equalHeights - takes the three main colums and makes their heights equal*/
(function() {
        $.fn.equalHeights = function() {
                var tallest = 0;
                this.each(function() {
                        if($(this).height() > tallest) {
                                tallest = $(this).height();
                        }
                });
                return this.each(function() {
                        $(this).height(tallest).css("min-height",tallest);
                });
        }//equalHeights
})(jQuery);

function _go(URL)
{
        alert("You are now leaving the Pioneer Bank and Trust website. This site may have a privacy policy and security different than Pioneer Bank & Trust.");
        self.name="Parent";
        win = window.open(URL,"Window");
        win.focus();
}


