$(document).ready(function() {
	$("a").click(function() {
		if((this.href).search("thewatsoninstitute.org/") < 0){
			if(!confirm("You have clicked a link that requires you to leave The Watson Institute website. Are you sure you want to leave the page?")){
				return false;
			}
		}
	});
});