$(document).ready(function() {

	$("a[@href^=http]").each(function(){
		if(this.href.indexOf(location.hostname) == -1) {
	      $(this).addClass('external'); 
	    }
	});

	$('a.external').click( function(e)
	{ 
		 window.open(this.href);return false;
	});
});