A stable timer that run in the background
http://mohayonao.github.com/MutekiTimer/
##How to Use
// use MutekiTimer object
t = new MutekiTimer();
t.setInterval(function() {
// processing
}, 150);
t.clearInterval();
// replace window.setInterval
MutekiTimer.use();
t = setInterval(function() {
// processing
}, 150);
clearInterval(t);
##License MIT