$(function() {
	set_color();
});

function set_color(){
	$("div.animate").animate({color:"#DF00A7",}, 500,
		function(){
			$(this).animate({color:"#0038DF",}, 500,
				function(){
					$(this).animate({color:"#00DF38",}, 500,
						function(){
							$(this).animate({color:"#DFA700",}, 500,
								function(){
									set_color();
								}
							);
						}
					);
				}
			);
		}
	);
}

