var $tone = {
    name: "tOne's Toolbox",
    version: "1.0",
    debug: true,
    log: function() {
        if(!top.window.console||!top.window.console.log||!this.debug)
            return;
        top.window.console.log([].join.call(arguments,''));
    },
    time: function() {
        if(!top.window.console||!top.window.console.time||!this.debug)
            return;
        top.window.console.time([].join.call(arguments,''));
    },
    timeEnd: function() {
        if(!top.window.console||!top.window.console.timeEnd||!this.debug)
            return;
        top.window.console.timeEnd([].join.call(arguments,''));
    },
    profile: function() {
        if(!top.window.console||!top.window.console.profile||!this.debug)
            return;
        top.window.console.profile([].join.call(arguments,''));
    },
    profileEnd: function() {
        if(!top.window.console||!top.window.console.profileEnd||!this.debug)
            return;
        top.window.console.profileEnd([].join.call(arguments,''));
    }
};
