$().ready(function(){
    // external urls
    $('a').click(function(){
	    if((this.href.match(/^http/i) && !this.href.match(location.host)) || this.rel=='external'){
		    window.open(this.href,'_');
		    return false;
	    }
	});
});