$(document).ready(function(){	
	$("a").click(function() {
		if($(this).attr("href").match(/^http/)) {
			window.open($(this).attr("href"), "outsideSite");
			return false;
		}
	});
});<!-- 

 -->