jQuery(document).ready(function(){
	jQuery('a.email').each(function(){
		e = this.rel.replace('/','@');
		this.href = 'mailto:' + e;
		jQuery(this).text(e);
	});
});

