// use a MutekiTimer object
t = new MutekiTimer();
t.setInterval(function() {
// processing
}, 150);
t.clearInterval();
// replace window.setInterval
MutekiTimer.use();
t = setInterval(function() {
// processing
}, 150);
clearInterval(t);
// check if MutekiTimer is enabled MutekiTimer.isEnabled();