// JavaScript Document
$(document).ready(function (){
							$('a').each(function() {
							var truc = $(this).html();
							truc2 = truc.replace(/\[arrowbase\]/,"@");
							$(this).html(truc2);
							var mailto = $(this).attr('href');
							mailexact = mailto.replace(/\[arrowbase\]/,"@");
							$(this).attr('href', mailexact);
							});
							});
