$(document).ready(function() { 
	//Open external links in a new window
	$("a[href^=http]").click(function(){
		window.open(this.href);
		return false;
	});
	//Open PDFs in a new window
	$("a[href*=.pdf]").click(function(){
		window.open(this.href);
		return false;
	});
});
