// Opens all external links in a new window automatically	
$(document).ready(function(){
	$("a[href^='http']").attr('target','_blank');
});

// Opens all PDFs in a new window automatically
$("a[href*=.pdf]").click(function(){
	window.open(this.href);
	return false;
});

