/*
Simple function to replace instances of: (replace+with+at+symbol)
with: @
Note that Ignite CMS's cleanup rich text function encrypts email addresses, and this function decrypts them.
*/
jQuery.fn.defuscate = function( settings ) {
    return this.each(function() {
        $(this).html($(this).html().replace(/\(replace\+with\+at\+symbol\)/g, '@' ));
        $(this).html($(this).html().replace(/%28replace\+with\+at\+symbol%29/g, '@' ));
    });
};
