jQuery(function(){

  //open external links on new window
  var host = window.location.host.toLowerCase();
  $("a[@href^='http']:not([href^='http://" + host + "']):not([href^='http://www." + host + "']):not([href^='javascript'])")
    .attr("target", "_blank");

});
