$('a').each(function(link){
	if(this.target=="_blank"){
		this.target="";
	}
	if(
		(this.href.indexOf(self.location.hostname)<0)
		&&(this.href!="")
		&&((this.href.hash=='')||(this.href.hash==null))
		&&(this.href.indexOf('javascript:')<0)
		&&(this.href.indexOf('addthis.com')<0)
		&&(this.href.indexOf('mailto:')<0)
		&&(this.target=="")
		&&(!this.rel||(this.rel&&this.rel.indexOf("shadowbox")<0))
	){
		this.target="_blank";
		if((this.title=="")&&this.className.indexOf("tooltip")<0){this.title=this.hostname;}
	}
});

