/*
 * função que troca a imagem no index.
 */

function changePicture(name) {
	document.getElementById("acamps1Img").style.display = "none";
	document.getElementById("acamps2Img").style.display = "none";
	document.getElementById("acamps7Img").style.display = "none";
	document.getElementById("mirimImg").style.display = "none";
	//document.getElementById("juvenilImg").style.display = "none";
	document.getElementById("casaisImg").style.display = "none";	
	img = name + "Img"
	document.getElementById(img).style.display = "block";
	
	document.getElementById("acamps1").style.backgroundColor = "#F1F1F1";
	document.getElementById("acamps2").style.backgroundColor = "#F1F1F1";
	document.getElementById("acamps7").style.backgroundColor = "#F1F1F1";
	document.getElementById("mirim").style.backgroundColor = "#F1F1F1";
	//document.getElementById("juvenil").style.backgroundColor = "#F1F1F1";
	document.getElementById("casais").style.backgroundColor = "#F1F1F1";		
	document.getElementById(name).style.backgroundColor = "#EE9B4F";	
	
	link_ = name + "Link";
		document.getElementById("acamps1Link").style.color = "#747474";
	document.getElementById("acamps2Link").style.color = "#747474";
	document.getElementById("acamps7Link").style.color = "#747474";
	document.getElementById("mirimLink").style.color = "#747474";
	//document.getElementById("juvenilLink").style.color = "#747474";
	document.getElementById("casaisLink").style.color = "#747474";		
	document.getElementById(link_).style.color = "#FFFFFF";				 
}

/*
 * funlão para abrir um link em uma nova janela
 */

function abrirLink(link){
	window.open(link, 'NovaJanela', 'width=950, height=600, resizable=yes, scrollbars=yes');
}

/*
 * troca a aba nas paginas dos acampamentos
 */
function trocaAbaAcamps(id){
	
	abas = new Array();
	abas[1] = "descricaoAcamps";
	abas[2] = "oQueLevar";
	abas[3] = "comoChegar";
	abas[4] = "ficha";
	
	for(i=1; i < 5; i++){
		if(document.getElementById(abas[i])){
		document.getElementById(abas[i]).style.display = "none";
		id_link = abas[i]+"_link";		
		document.getElementById(id_link).style.color = "#747474"		
		}

	}

	document.getElementById(id).style.display = 'block'
	document.getElementById(id+"_link").style.color = '#f67319'
}

// abre a galeria de fotos
function openGallery(){
	window.open('http://www.acampspoa.com.br/fotos', 'GaleriaDeFotos', 'width=950, height=600, resizable=yes, scrollbars=yes');
}

function trim(str){
	return str.replace(/^\s+|\s+$/g,"");
}

/* funções para o Qual Acamps Eu Fiz?" */

function changeValue(nome){
	document.getElementById("nome").value = nome;
	document.getElementById("campistas").style.display = "none";
}

function markOption(id){
	document.getElementById(id).className="marked";
}

function unmarkOption(id){
	document.getElementById(id).className="";
}

function campistasAjax(campista){
	campista = trim(campista);
	if(campista != ""){
		new Ajax.Updater('campistas', './campistas.php', { method: 'post',  parameters: {nome: campista}});
		document.getElementById("campistas").style.display="block";
	} else {
		document.getElementById("campistas").style.display="none";
	}	
}

function consultar(){
	document.getElementById("campistas").style.display = "none";
	campista = document.getElementById("nome").value;
	campista = trim(campista);
	if(campista!=""){
		new Ajax.Updater('lista', './meuacamps.php',  
					{ 
					method: 'post',  
					parameters: {nome: campista},
					onComplete: function(){document.getElementById('resultadosTable').style.display='block';}})
	
	} else {
		alert("Digite um nome para buscar!"); 
	} 
	
	
	
}