//SCRIP QUE MOVE O CONTEUDO PARA BAIXO OU PARA CIMA
x = 0;
	function movePessoasCima(){
		if(x < 1){
			x++;
			document.getElementById("cont").style.top = -x*1;
		}
		else{
			x = 1;
		}
		tempo = setTimeout('movePessoasCima()', 1)
	}
	
	function movePessoasBaixo(){
		if(x <= -1){
			return false;
		}
		
		x--;
		document.getElementById("cont").style.top = -x*1;
		
		tempo1 = setTimeout('movePessoasBaixo()', 1)
	}
	
	//SCRIP MOSTRA ESCONDE DIV 
	var ultima = "wilma";
	
		
	function mostraDiv(id){
		if(ultima.length > 0)
			escondeDiv(ultima);

		ultima = id;
		document.getElementById("eneida").style.display = "none"
		
		
		document.getElementById(id).style.display = "block";
		
	}
	
	function escondeDiv(id){
		document.getElementById(id).style.display = "none";
	}
	
	
function mudaVideo(qual){
	document.getElementById("video").src = "/donos_caes/produtos/previcox/depoimentos/" + qual + ".htm";
}

function mostraDep(qual){	
	vds = document.getElementById("video").src;
	depoimentoId = vds.substring(vds.lastIndexOf("video_") + 6, vds.indexOf(".htm"))
	if(ultima.length > 0)
		escondeDiv(ultima);
					
	document.getElementById(depoimentoId).style.display = "block"
	ultima = depoimentoId;
}
