// All extrenal links will load in a new window
$(document).ready(function() {
   $("a[href^=http]").each(function(){
      if(this.href.indexOf(location.hostname) == -1) {
         $(this).attr({
            target: "_blank"
         }).addClass("marked");
      }
   })
});
