(function( $ ){
function antiMailSpam(){
$(".email").each(function(){
var realemail = $(this).text().replace('(at)','@').replace('(dot)','.');
$(this).text(realemail);
});
$("a.email").each(function(){
var href = $(this).attr('href');
if(href.indexOf('mailto:')!=-1){
href = href.replace('(at)','@');
$(this).attr('href',href);
var text = $(this).text().replace('(at)','@');
$(this).text(text);
}
});
} // fin fonction
$(document).on('ready', function(){
antiMailSpam();
});
})( jQuery );