$(function() {
	//Open external links in a new window
	$("a[href^=http]").click(function(){
		if(!$(this).hasClass("sameWindow"))
		{
		window.open(this.href);
		return false;
		}
	});
	//Open PDFs in a new window
	$("a[href*='.pdf']").click(function(){
		window.open(this.href);
		return false;
	});
	//Open in a new window by class
	$("a.newWindow").click(function(){
		window.open(this.href);
		return false;
	});
});

