Ejemplo animación jQuery

Este ejemplo lo pongo como recordatorio.Nota requiere jQuery y jQuery-UI:

$(document).ready(function(){
	colors = ['#FFB30C', '#58EC00', '#0087EC', '#EEEEEE', '#FF5A00' ];
	var i = 0;
	animate_loop = function() {      
	$('body').animate({backgroundColor:colors[(i++)%colors.length]
		}, 900, function(){
			animate_loop();
		});
	}
	animate_loop();
});
Descarga código fuente