$(document).ready(function() {
	$('a').each(function() {
		var a = $(this).attr('href');
		if(a.match('http://') && !a.match('catholicthrive.com')) {
			$(this).attr('target', '_blank');
		}
	});
});