$(function(){
	for (var i = 0; i <20; i++){
	$("#color")
		.animate({ backgroundColor: "orange" }, 3000)
		.animate({ backgroundColor: "beige" }, 3000)
		.animate({ backgroundColor: "black" }, 3000)
		.animate({ backgroundColor: "yellow" }, 3000)
		.animate({ backgroundColor: "lime" }, 3000)
		.animate({ backgroundColor: "blue" }, 3000)
		.animate({ backgroundColor: "lightgreen" }, 3000)
		.animate({ backgroundColor: "violet" }, 3000)
		.animate({ backgroundColor: "red" }, 3000)
		.animate({ backgroundColor: "lightpink" }, 3000)
		.animate({ backgroundColor: "aqua" }, 3000)
		.animate({ backgroundColor: "white" }, 3000);
	}
});