$(document).ready(function(){
	//Modified version of script found at 456bereastreet
	$("a[rel='external']").click(function(){
		var extWindow = window.open($(this).attr('href'), '_blank');
		extWindow.focus();
		return false;
	})
})