$("document").ready(function(){
							 $(".mail").each(function(){
													  $(this).text($(this).text().replace("[_a_t_]","@"));
													  $(this).attr("href",$(this).attr("href").replace("[_a_t_]","@"));
													  $(this).show();
													  });
								
							 });
