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

