jQuery(document).ready(function() {

    // External link
    jQuery("a[href^=\"http\"]").each(function(i){
        jQuery(this)
            .not("[href*=\""+document.domain+"\"]")
            .bind('click', function() {
                this.target = "_blank";
            });
    });
     
});
