/* Author:  underscreen.com
						Diego Avola
*/
$(function()
{
	var colores = ['#f7931e','#ff1d25','#9e005d','#3fa9f5','#8cc63f'],
			$experto = $('.title strong'),
			$interactive = $('#logo .title');	
			
	function proximoColor()
	{
		var color = colores.shift();
		colores.push(color);
		console.log(color);
		$experto.animate({color: color},500);
		//$interactive.animate({color: color},300);
	}
	
	setInterval(function(){
		proximoColor();
	}, 1000);
	
})
























