$(function(){
	// cause all off-site links to open in a new browser window
	$('a[href]').each(function(){
		if($(this).attr('href').match(/^http:/)){
			$(this).attr('target', '_blank')
		}
	});
});