var timeOut = null;
var objetoFotoGaleria = document.getElementById("field_fotoGaleria");

function carregaImagens()
{
	var quantFotosGaleria = arrayFotosGaleria.length;

	imagens = new Array();
	for(cont = 0; cont < quantFotosGaleria; cont++)
	{
		imagens[cont] = new Image();
		imagens[cont].src = url + 'arquivo_foto/p/' + arrayFotosGaleria[cont];
	}
}

function trocaImagensGaleria(idFotoAtual)
{
	if(trocaImagensGaleria && arrayFotosGaleria.length > 1)
	{
		if(!idFotoAtual || idFotoAtual == (arrayFotosGaleria.length - 1))
			idFotoAtual = 0;
		else
			idFotoAtual++;
		
		document.getElementById("field_fotoGaleria").src = url + 'arquivo_foto/p/' + arrayFotosGaleria[idFotoAtual];
		timeOut = window.setTimeout("trocaImagensGaleria('"+idFotoAtual+"')", 8000);	
	}
	else
		document.getElementById("field_fotoGaleria").src = url + 'arquivo_foto/p/' + arrayFotosGaleria[0];

	return(0);
}

// Carrega todas as imagens da Galeria...
carregaImagens();