$(function() {
  $('a.interpretado').each(function(){
	  e = this.rel.replace('astri@a','@'); //Remplaza el texto '(arroba)' por '@'.
	  this.href = 'mailto:' + e;
	  $(this).text(e);
  });
});
