    /**
        @name:          sqeenCMS
        @version:       2.x
        @package:       template
        @subpackage:    sqc_core
        @access:        frontend
        @author:        sqeen
        @copyright:     sqeen
        @since:         2010
        @todo:          jQuery JavaScript functions
    */


    // Document ready functions
        $(document).ready(function () {
            // Decrypt email addresses
                var htmlBody = $('body').html();
                var htmlBodyRepl = htmlBody.replace(/\[SQM\]/g, '@');
                $('body').html(htmlBodyRepl);
        });
