$(document).ready(function() {  $('a').filter(function() {    return this.hostname && this.hostname !== location.hostname;  }).addClass('external')  .click(function() {    window.open(this.href);    return false;  });});