$(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 = ' [@] ';
		var period = ' [.] ';
		var addr = $(spt).text()
			.replace(to, "@")
			.replace(period, ".")
			.replace(period, ".");
		var title = $(this).attr("title");
		if ( title.length == 0 ) {
			title = addr;
		}
		$(spt).after('<a href="mailto:' + addr + '">' + title +'</a>');
		$(spt).remove();
	});
	
	$("#wrapper").fadeIn(3250);
	
});
