$(document).ready(function() {
	alert("You are now entering the Glenmede Funds portion of the website");
	
	$("a").click(function(){
		if (!$(this).attr("href").match("pdf")){
			alert("You are now leaving the Glenmede Funds portion of the website");
		}
	});
});

