﻿
NEIL = function(){

    /* Private */
        
    /* Properties */
    
    var cmp = {};
    
    
    
    
    
    /* Methods */
    
    var init = function(){
    
        /* Constructor */
    
    };
    
    
    
    
    
    /* Public */
    
    TVI.apply(cmp, {
    
        /* Properties */
    
        test: 'test',        
    
        /* Methods */
        
        test: function(){
        
            /* Test function  */
        
        }
    
    });
    
    
    TVI.ready(init);    
    
    
    return cmp;


}();