jQuery("document").ready(function(){
	jQuery('a.new-window').click(function(){
		window.open(this.href);
		return false;
	});
});