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