//=======================================================================================================
//-------------------------------------------------------------------------------------------------------
//	Custom Javascript functions
//-------------------------------------------------------------------------------------------------------
//=======================================================================================================
//-------------------------------------------------------------------------------------------------------
//	downloads & external links
//-------------------------------------------------------------------------------------------------------
$(document).ready(function(){	
 
	//	PDF links open new tab
	$("a[href$='pdf']").click(function(){
		$(this).attr("target","_blank");
	});

	//	External links target new window
	$('a[href^="http://"],a[href^="https://"]').attr("target", "_blank");
});



