$(function() {
    // open in new window
    $('a[rel*=external]').click(function(event){
        window.open(this.href);
        event.preventDefault();
    });
    $('a[rel*=nofollow]').click(function(event){
        window.open(this.href);
        event.preventDefault();
    });
});
