(function( $ ){
  
     // every link that isn't pointing to our host, give a target='_blank' attribute
     $("a[href^='http']:not([href*='" + window.location.host + "'])").live('click', function(){
        $(this).attr("target", "_blank");
     });

})( jQuery );
