$(document).ready(function() {
	
	$("a.new-tab").click(function(event) {
		event.preventDefault();
		window.open(this.href);
	});
});

