$().ready(function() {

	/******************************************************
	/	Code to make the menu show the current page
	/******************************************************/
	var currentUrl = document.location.href;
	$('#header a[href="'+currentUrl+'"]').addClass("active")
	.parent().parent().each(function() {
		var div = $(this);
		if(div.hasClass("subnav"))
		{
			div.show();
			$("#aboutus").addClass("active");
		}
	}); 

	/******************************************************
	/	Code to add copyright notices to document links
	/******************************************************/
	$('#content a[href*=pdf]').not(".nocopyright").click(function() {
	   return confirm("This material is copyrighted by the WPCA and can not be published without WPCA approval. By clicking 'OK' you agree to the copyright conditions.");
	});

});