// JavaScript Document
$(function(){
	$("a:not[href*=pct.edu]").attr("target","_blank");
	$("div#storycontainer a[href*='.pdf']").each( function(){ overrideHandlePDF(this);});
																							 
	function overrideHandlePDF(e){
		$(e).append(' <span class="smaller">[PDF]</span>').css({background:"none", padding: "0", display:"inline", textIndent:"0px"});
	};
});