/**
  * Definit un espace de nom pour l'application
  */

var CC = window.CC || {

    Version: '1.0',
    
    UrlBase: '/js/',
    
    imports: [
        'CCNotifier',
        'CCUtils',
        'CCGameManager',
        'CCCookieManager',
        'CCPopinManager',
        'CCCokeManager',
        'CCRemoter',
        'CCSubscriber',
        'CCFormVal',
        'CCFacade'
    ]
    
};

for(var iFile = 0, iCount = CC.imports.length; iFile < iCount; iFile++) {
    document.write([
        '<script type="text/javascript" src="',
        CC.UrlBase,
        CC.imports[iFile],
        '.js"><' + '/script>'
    ].join(''));
}