Или:
<html><head></head><body><script type="text/javascript">
var getNum = function() {return Math.floor(Math.random() * 256)};
setInterval(function() {
document.body.style.backgroundColor = 'rgb(' + getNum() + ',' + getNum() + ',' + getNum() + ')';
}, 1000);
</script></body></html>