// email page functionality
$(document).ready(function () {
	$("a[title='Email This Page']").attr("href","mailto:?subject=" + encodeURIComponent("Check out this page on the Center for Talent Development website") + "&body=" + encodeURIComponent(document.title + ":\n\nhttp://www.ctd.northwestern.edu" + window.location.pathname + window.location.search));
});


