$(document).ready(function() {
	
	var host = "web";
	var name = "tinatin-piano";
	var tdl  = "de";

	$('a.trio').each(function() {
		e = name + "@" + host + "." + tdl;				//this.rel.replace('/','@');
		this.href = 'mailto:' + e;
		$(this).text(e);
	});

});