

$(document).ready(function(){
	$('a[@rel*=mail]').each(function(){
		e = this.innerHTML.replace('/','@');
		this.href = 'mailto:' + e;
		$(this).text(e);
	});	
});



