$(document).ready(function(){
	
	$("a[rel='external']").click(function(event){
		event.preventDefault();
		window.open(this);
	});	
	
	$('span.addr').each(function() {
		$(this).attr("id", "addr0");
		var spt = "#" + $(this).attr("id");
		var to = ' [at] ';
		var period = ' [.] ';
		var addr = $(spt).text()
			.replace(to, "@")
			.replace(period, ".")
			.replace(period, ".");
		$(spt).after('<a href="mailto:' + addr + '">' + addr +'</a>');
		$(spt).remove();
	});
	
});