$(document).ready(function(){
	$('.new_window').click(function() {
		window.open(this.href);
		return false;
	});
})