﻿/* E-mails
-----------------------------------------------------------------------------*/
var mails = new Array();
mails[0] = "js"+"30"+"@l"+"iv"+"e."+"f"+"r";
mails[1] = "";

function changeToMail(className,i,title){
    if (!title) title = "Envoyer un e-mail";
    if (jQuery("."+className)) {

        jQuery("."+className).each(function(){
            jQuery(this).html("<a href='" + "mai" + "lto:" + mails[i] + "' title='" + title + "'>" + mails[i] + "</a>");
        });
    }
}
