$(function(){
var spt = $('span.escribeme');
var at = / en /;
var dot = / punt /g;
$('span.escribeme').each(function () {
var addr = $(this).text().replace(at,"@").replace(dot,".");
$(this).after('<a href="mailto:'+addr+'" title="Enviar un email / Send an email" rel="nofollow">'+ addr +'</a>')
.hover(function(){window.status="Escribirnos!";}, function(){window.status="";});
$(this).remove();
});
}
);