$(document).ready(function(){
	$('a[href^="http://"]').click(function(event) {
		event.preventDefault();
		window.open(this.href);
	});
});
