// requires jQuery
$(document).ready(function(){
	$('a[@rel="external"]').each(function(){
		this.target = "_blank";
	});
});
