$(document).ready(function() {

	/**
	 * Open all pdfs in a new window
	 */
	$("a[href*=.pdf]").each(
		function() {
			$(this).attr('target', '_blank');
		}
	);

	/**
	 * Open all external links in a new window
	 */
	$("a[@href^=http]").each(
		function() {
			if ((this.href.indexOf(location.hostname) == -1) && ($(this).attr('target') == '')) { 
				$(this).attr('target', '_blank');
			}
		}
	);

});