//set drawmode false
function nova(){
var color = 'rgb('+Math.floor(Math.random()*255)+','+Math.floor(Math.random()*255)+','+Math.floor(Math.random()*255)+')';
$(document.body).animate({
	backgroundColor:color
	}, 2000);
window.setTimeout('nova()',3400);							
}
$(document).ready(function() {	
	nova();
});
// Thx to Motyar
