  /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 ~~~~~~~~~~~~~~ DESENVOLVEDOR - EDWIN B. PANCOTI ~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
var atual=1;
var length;
var time=5000;
var auto;
var done=true;

$(window).load(function(){
	length=$(".fundo-titulo-topo").length;
						
	$("#fundo-numeros > span:eq(0)").addClass("dstAtivo");
	$(".fundo-titulo-topo:eq(0)").fadeIn("fast");
	$(".image_hidden > img:eq(0)").fadeIn("fast");
	
	if(length>1)
		auto=setTimeout("next()",time);
	
	$("#fundo-numeros span").click(function(){
		if(!$(this).hasClass("dstAtivo")&&done){
			done=false;
			var id=$(this).attr("id");
			id=id.replace("goTo","");
			atual=id-1;
			clearTimeout(auto);
			next();
		}
	});
});

function next(){
	$("#fundo-numeros > span").removeClass("dstAtivo");
	$(".fundo-titulo-topo").fadeOut("fast");
	$(".image_hidden > img").fadeOut("fast");
	
	$(".fundo-titulo-topo:eq("+atual+")").fadeIn("fast");
	$(".image_hidden > img:eq("+atual+")").fadeIn("fast");
	$("#fundo-numeros > span:eq("+atual+")").addClass("dstAtivo");
	
	atual++;
	if(atual>=length)
		atual=0;
		
	done=true;
	auto=setTimeout("next()",time);
}
