$(document).ready(function() {
	$('a[target="_blank"]').each(function() {
		var href = $(this).attr("href");
		if (href.indexOf("http://") >= 0) {
			$(this).click(function() {
				alert('Let op, u verlaat nu deze website!');
			});
		}
	});
});
