/*

java script : galeria de fotos
criado      : 21/09/2007 01h25min
atualizado  : 13/10/2007
atualizado  : 14/11/2007
versão      : 1.0.5
autor       : Uiliam Cruz - www.uiliamcruz.com

*/

var nFotos;
//var Legenda     = document.formGaleria.legenda.value;
var verLegenda = "sim";
var contInicial = document.formGaleria.contInicial.value;
var qtdFotos    = document.formGaleria.qtdFotos.value;
var caminho     = document.formGaleria.caminho.value;
var extensao    = document.formGaleria.extensao.value;
var alt = "foto: ";

	function acaoMudaFoto(F){	document.images.ver.src=caminho+F+extensao;	}
	//function acaoMudaText(T){	document.getElementById("legenda").innerText =  leg[T];	} 	/* 13/10/2007 . Legenda */
	//function acaoMudaText(T){	document.getElementById("legenda").innerText =  T; }
	
	function acaoMudaText(T){
		if(verLegenda=="sim"){
			document.getElementById("legenda").innerText =  leg[T]; 	/* 13/10/2007 . Legenda */
		}
		if(verLegenda=="não"){
			document.getElementById("legenda").innerText =  T;			
			}
	}
						
	function temLegenda(){
	
	if(verLegenda=="sim"){
	
				for(nFotos=contInicial; nFotos<=qtdFotos; nFotos++){
				document.write('<a href="#f" id="'+nFotos+'" onClick="acaoMudaFoto('+nFotos+');acaoMudaText('+nFotos+');">');
				document.write('<img src="'+caminho+nFotos+extensao+'"  alt="'+alt+' '+leg[nFotos]+'" border="0" />'); //width="85" height="64"
				document.write('</a>');
				}
		
		}
	if(verLegenda=="não"){
	
				for(nFotos=contInicial; nFotos<=qtdFotos; nFotos++){
				document.write('<a href="#f" id="'+nFotos+'" onClick="acaoMudaFoto('+nFotos+');acaoMudaText('+nFotos+');">');
				document.write('<img src="'+caminho+nFotos+extensao+'"  alt="'+alt+' '+nFotos+'" border="0" />');
				document.write('</a>');		
				}
			}
	}
	temLegenda();


