I want mootools to change the background color constantly. I have no idea how to do this but I have come up with the following code so far as a test but it doesn't work at all. How can I chain colors and then call it again and again so I have this "rainbow" background?
function rainbow() {
$(document.body).highlight("#fff");
rainbow();
}