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