$(function() {	
	// open all external links in a new window
	$('a[href^=http]').each(function() {
		if(this.href.indexOf(location.hostname) == -1) {
			$(this).click(function(){
				window.open(this.href);
				return false;
			});
		}
	});
	
	// open all pdf links in a new window
	$('a[href$=pdf]').each(function() {
		$(this).click(function(){
			window.open(this.href);
			return false;
		});
	});
});

