$(document).ready(function(){
	setExternal();
});

function setExternal(){
	$("a[rel=external]").each(function(i){
		this.target="_blank";
	});
}
