$(function(){
	$('.extLink').click(function(a){
		a.preventDefault();
		address = $(this).attr('href');
		url_parts = address.split("/");
		domain = url_parts[2];
		message =  "<p>Redirecting to "
				+ "<a href='"+address+"'>"+domain+"</a>"
				+ "&nbsp;<img src='img/loader.gif' /></p>";
		boxy = new Boxy(message,{
			title:address,
			closeable:false,
			modal:true,
			afterShow:function(){
				setTimeout(
					"window.location = address",
					1200
				);
			}
		});
	});
});
