jQuery(document).ready(function() {

	// open pdf files in new window
	$('a[href$=pdf]').each(function() {
 	 $(this).attr('target', '_blank');
	});
	
});
