
$(document).ready(function() {
	// format email addies
	// rel="foo|bar#com"
	$('span.eml').each(function() {
		inner = $(this).html();
		m = $(this).attr('rel').replace('|', '@').replace('#', '.');
		$(this).replaceWith('<a href="mailto:' + m + '">' + inner + '</a>');
	});



});
