This is the example page that shows how you can run some Kitt examples that wipe from left to right to left.
Here we have a div with the default kitt id, and then new Kitt(); goes on and finds it and does its deed. We could delete that div and it will be created, which happens when an element can't be found. It gets created at the end of the body.
This version shows how you can pass in settings to tweak the bugger. In particular it hides the generated buttons to start and stop the animation, and programatically starts it, and then stops it a few seconds later:
var evilkitt = new Kitt({id: 'evilkitt', animateBackgroundColor: 'red', hideButtons: true });
evilkitt.start();
setTimeout(function() { evilkitt.stop(); }, 6000);