﻿
App = function(){

    /* Private */
        
    /* Properties */
    
    var cmp = {};
    
    
    
    
    
    /* Methods */
    
    var init = function(){

        /* Constructor */
        TVI.Forms.handlerURL = '/handlers/'; //DEVTEMP
        TVI.Data.defaultURL = '/handlers/Data.aspx/query'; //DEVTEMP

        // Add actions to more links
            TVI.event('#testimonials .testimonialText1 A', 'click', function() {
            $(this).fadeOut('fast').parents('.text').find('.testimonialText2').slideDown('fast');
        });
                
    
    };
    
    
    
    
    
    /* Public */
    
    TVI.apply(cmp, {
    
        /* Properties */
    
        test: 'test',        
    
        /* Methods */
        
        test: function(){
        
            /* Test function  */
        
        }
    
    });
    
    
    TVI.ready(init);    
    
    
    return cmp;


}();
