$(document).ready(function() {
  hostname = window.location.hostname;
  $("a[href^=http]")
    .not("a[href*='" + hostname + "']")
    .addClass('link external')
    .attr('target', '_blank');
});

