$(document).ready(function() {
//external attribute
    $("a:not([@href*=http://www.collegeandcharacter.org/])").not("[href^=#]")
        .addClass("external")
        .attr({ target: "_blank" });
    }
);

