jQuery.fn.uncloak_email = function() {
    return this.each(function() {
        $(this).html($(this).html().replace(/( |%20)(A|DO)T( |%20)/g, "@"));
    });
};
