// Open link in a new window/tab
jQuery( function( $ ){
	$('a.windowNew').click(function(){
		window.open(this.href);
		return false;
	});
});

