jQuery(document).ready(function(){
  $('a').each(function(){
   if ($(this).attr('href') && $(this).attr('href').indexOf('http://') != -1){
     $(this).attr('target','_blank');
   }
  });
});
