﻿/* E-mails
-----------------------------------------------------------------------------*/

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