/*
    Module Bare Template Example 
    ----------------------------
    
    This is the absolute minimum each module must define
    
    It is critical that it is setup exactly this way,
    else the module instatiation in the global app object might fail. 

    The most important part here is "page", "T.page", and "T.page_private"
    
    See the demo module in the other file for some usage examples

*/

DDWebsite.modules.page = function (T) { 
    
    var public = T.page = {} ; 
    var _ = private = T.page_private = {} ; 
    
    public.init = function() {
        // must be implemented in all modules 
        // e.g. console.log("init in page") ; 
        console.log("init in page") ; 
    } ; 
    
};



