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

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