$(document).ready(function() {
    //$("a[rel='example2']").colorbox({ transition: "fade" });

    $('.encodedAddress').each(function() {
        var emailAddress = $(this).text();
        emailAddress = emailAddress.replace("[at]", "@");
        $(this).replaceWith('<a href="mailto:' + emailAddress + '">' + emailAddress + '</a>');
    });
})








