/**
 * AÇÕES DA SEÇÃO DUMOND
 * 
 * @auhtor Gibran (gibran@gadbrivia.com.br)
 */

function Dumond()
{
	Dumond.foto.atual = 0;
	Dumond.foto.total = $("div#galeria-marca > img").length;
	
	window.setTimeout(Dumond.animar, Dumond.foto.intervalo);
}

Dumond.foto = {
	atual: null,
	intervalo: 2000,
	proxima: null,
	total: null
}

Dumond.animar = function()
{
	if (Dumond.foto.atual < Dumond.foto.total - 1)
	{
		Dumond.foto.atual += 1;
	}
	else
	{
		Dumond.foto.atual = 0;
	}
	
	if (Dumond.foto.proxima < Dumond.foto.total - 1)
	{
		Dumond.foto.proxima = Dumond.foto.atual + 1;
	}
	else
	{
		Dumond.foto.proxima = 0;
	}
	
	$("div#galeria-marca > img:eq(" + Dumond.foto.atual + ")").fadeOut("slow");
	$("div#galeria-marca > img:eq(" + Dumond.foto.proxima + ")").fadeIn("slow");
	
	window.setTimeout(Dumond.animar, Dumond.foto.intervalo);
}