$(document).ready(function() {
  $("a").each(function() {
    if ($(this)[0].hostname != location.hostname) {
      $(this).attr('target', '_blank');
    }
  });
});
