﻿/* E-mails
-----------------------------------------------------------------------------*/
var mails = new Array();
//mails[0] = "contact" + "@" + "adresse" + "-" + "site" + "." + "com";
mails[1] = "";

function changeToMail(className, i, bShowText) {
    try {
        if (jQuery("." + className)) {
            jQuery("." + className).each(function(){
                jQuery(this).attr("href", "mai" + "lto:" + mails[i]);
                if (bShowText) {
                    jQuery(this).html(mails[i]);
                }
            });
        }
    }
    catch(e){}
}
