/**
 * The PDFA global object/namespace
 * 
 * This application creates the pdfa namespace and pdfa.dei package. This 
 * document should be included in every document in this site and all 
 * JavaScript should fall under the pdfa.dei package.
 * 
 * @author Michael Girouard (mgirouard@mcdpartners.com)
 */
(function () {
    
    /**
     * The pdfa namespace
     * 
     * @namespace pdfa
     */
    window.pdfa = {};
    
    /**
     * The dei package
     * 
     * @namespace pdfa
     * @package pdfa.dei
     */
    pdfa.dei = {};
    
})();