jQuery(function() {
jQuery('a[href^="http://"]').filter(function(){
    return this.hostname && this.hostname !== location.hostname; })
        .addClass("external")
        .attr({ title: "Link will open in new window" })
        .click( function() {
            window.open(this.href);
            return false;
        });

});

