FT =
{
    init: function() {
        this.log('application started');
    },

    log: function(msg) {
        if (typeof console != 'undefined' && console.log) {
            console.log(msg);
        }
    }
};

