jQuery(function(){

  // Make all external links open in a new window / tab
  jQuery("a[href*='http://']:not([href*='"+location.hostname+"']),[href*='https://']:not([href*='"+location.hostname+"'])")
  .addClass("external")
  .attr("target","_blank");
});
;

