// JavaScript Document
$(document).ready(function() {
	$("a[rel=external]").each(function(){
		this.target = "_blank";
	});
});
	
