

$(document).ready(function() {

	var url = 'bishop-hartley.org';

	$("a").click(function() {

		var href = $(this).attr('href');

		if(href.indexOf('http://') != -1 || href.indexOf('https://') != -1) {

			if(href.indexOf(url) == -1) {

				var r = confirm("Warning! You are about to leave the Bishop Hartley website. Bishop Hartley is not responsible for content outside of this site.");
				return r;
			}
		}


	});

});