$(function() {
  $('a.interpretado').each(function(){
	  e = this.rel.replace('astri@a','@');
	  this.href = 'mailto:' + e;
	  $(this).text(e);
  });
  
  $('a.button_interpretamail').each(function(){
	  e = this.rel.replace('astri@a','@');
	  this.href = 'mailto:' + e;
	  $(this).html('<span>'+e+'</span>');
  });
  
    $('a.button_interpretasololink').each(function(){
	  e = this.rel.replace('astri@a','@');
	  this.href = 'mailto:' + e;
  });
  
});
