$(function() {
	$("a[href^='http']:not([href*='" + window.location.host + "'][target='_blank'])").live('click', function(){
		window.open($(this).attr('href'));
		return false;
	 });
});

