var idFotoExibida = 0;

function leftPicture(total){
	var novoId = (idFotoExibida + (total-1))%total; 
	var novaFoto = document.getElementById("imagemProduto_"+novoId);
	var fotoAtual = document.getElementById("imagemProduto_"+idFotoExibida);
	
	fotoAtual.style.display = "none";
	novaFoto.style.display = "";
	
	idFotoExibida = (idFotoExibida + (total-1))%total;
}

function rightPicture(total){
	var novoId = (idFotoExibida + 1)%total;
	var novaFoto = document.getElementById("imagemProduto_"+novoId);
	var fotoAtual = document.getElementById("imagemProduto_"+idFotoExibida);
	
	fotoAtual.style.display = "none";
	novaFoto.style.display = "";
	
	idFotoExibida = (idFotoExibida + 1)%total;
}
