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