// JavaScript Document
// Muda as imagens das galeria de fotos
function mudar(url) {
	url = url.replace("thumbs/", "/");
	document.getElementById("visualizando").src = url;
}

function scrollBar(side) {
	if ( (side == "right") && (i + 4 < m) ) {
		i++;
	} else if ( (side == "left") && (i > 1) ) {
		i--;
	}
	document.getElementById("p1").src = path + "thumbs/" + vetor[i];
	document.getElementById("p2").src = path + "thumbs/" + vetor[i + 1];
	document.getElementById("p3").src = path + "thumbs/" + vetor[i + 2];
	document.getElementById("p4").src = path + "thumbs/" + vetor[i + 3];
	document.getElementById("p5").src = path + "thumbs/" + vetor[i + 4];
}

i = 1; //Indice do vetor
path = "fotos/galeria/"; // diretorio das imgs desta galeria
vetor = new Array();

for (j = 1; j <= 48; j++) {
	if (j < 10) vetor[j] = "foto_0" + j + ".jpg";
	else vetor[j] = "foto_" + j + ".jpg";
}

m = vetor.length - 1; // Maior valor do indice
