$(function() {
	$("a").each(
		function (){
			if(this.rel=="external"){
				this.target="_blank";
			}
		}
	);	
});