// JavaScript Document

function time_foto(){
	if (tempo > picturelist.length){tempo=1;document.getElementById(picturelist.length).className = "player"}
		document.getElementById("foto_home").src=picture_url+picturelist[tempo-1];
		
		document.getElementById(tempo).className += " activeTab";
		a = "texto" + tempo;
		b = "titulo" + tempo;
		document.getElementById("box_texto").innerHTML = window[a];
		document.getElementById("box_titulo").innerHTML = window[b];
	if(tempo>1){tempo2 = tempo - 1; 
		if(document.getElementById(tempo2)) document.getElementById(tempo2).className = "player" ;
		}
	tempo = tempo + 1;
	}	
	
function change_foto(numero){
			tempo2=tempo-1;
			if(document.getElementById(tempo2)) document.getElementById(tempo2).className = "player";
			if(document.getElementById("foto_home")) document.getElementById("foto_home").src=picture_url+picturelist[numero-1];
			a = "texto" + numero;
			b = "titulo" + numero;
			document.getElementById("box_texto").innerHTML = window[a];
			document.getElementById("box_titulo").innerHTML = window[b];
			document.getElementById(numero).className += " activeTab";
			teste = numero + 1;
			window.clearInterval(intervalo);
}

function restart_intervalo(){
	tempo=teste;
	intervalo = window.setInterval("time_foto()", 5000);
	}
