$(document).ready(function(){
						   
jQuery(function(){
		jQuery("a[href$='.pdf'], .external").click(function(){
			var newwindow = window.open(this.href, '_blank');
			newwindow.focus();
			return false;
		});
	});


});
