$(function(){
	var self_home = document.URL.substring(7,document.URL.lastIndexOf("/"));
	$("a[href^='http']")
		.not("a[href*='"+self_home+"']")
			.click(function(){
				window.open(this.href, '_blank');
				return false;
			})
});

