
$(document).ready(function(e) {
	$('.openNewWindow').click(function(e) {
		return !window.open($(this).attr('href'));
	});

	
});