$(document).ready(function(){

	//Open external links and PDFs in new browser tab/window

	$('a.external').click(function(){

		window.open(this.href);

		return false;

	});

   
});
