$(document).ready(function(){
	
	$('a.newWindow').click(function(){
		var href = $(this).attr('href');
		window.open(href);
		return false;
	});
})
