function exibeLegenda(legenda) {
		
	obj = document.getElementById("foto"+legenda);
	obj.style.visibility = 'hidden';
	
	obj = document.getElementById("legenda"+legenda);
	obj.style.visibility = 'visible';

}

function exibeFotoProjeto(foto) {

	obj = document.getElementById("legenda"+legenda);
	obj.style.visibility = 'hidden';
	
	obj = document.getElementById("foto"+legenda);
	obj.style.visibility = 'visible';
	
} 
$(document).ready(function(){
	$("#strTelefone").mask('(99) 9999-9999'); 
	$("#strCelular").mask('(99) 9999-9999'); 
	
	
	
	$("#formContato").submit(function(){
		document.getElementById('msg_strHospede1').style.display = "none";
		document.getElementById('msg_strHospede2').style.display = "none";
		document.getElementById('msg_strEmail').style.display = "none";
		document.getElementById('msg_strCidade').style.display = "none";
		document.getElementById('msg_strPais').style.display = "none";		
		document.getElementById('msg_strTelefone').style.display = "none";
		document.getElementById('msg_dtInicio').style.display = "none";
		document.getElementById('msg_dtFim').style.display = "none";
		document.getElementById('msg_strMensagem').style.display = "none";
		
		
		retorno = true;
		if($("#strHospede1").val() == ""){	
			document.getElementById('msg_strHospede1').style.display = "block";
			if(retorno){
				document.getElementById('strHospede1').focus()
			}
			retorno = false;	
		}
		if($("#strHospede2").val() == ""){	
			document.getElementById('msg_strHospede2').style.display = "block";
			if(retorno){
				document.getElementById('strHospede2').focus()
			}
			retorno = false;	
		}
		if($("#strEmail").val() == ""){	
			document.getElementById('msg_strEmail').style.display = "block";
			if(retorno){
				document.getElementById('strEmail').focus()
			}
			retorno = false;	
		}
		if($("#strCidade").val() == ""){	
			document.getElementById('msg_strCidade').style.display = "block";
			if(retorno){
				document.getElementById('strCidade').focus()
			}
			retorno = false;	
		}
		if($("#strPais").val() == ""){	
			document.getElementById('msg_strPais').style.display = "block";
			if(retorno){
				document.getElementById('strPais').focus()
			}
			retorno = false;	
		}		
		if($("#strTelefone").val() == ""){	
			document.getElementById('msg_strTelefone').style.display = "block";
			if(retorno){
				document.getElementById('strTelefone').focus()
			}
			retorno = false;	
		}
		if($("#dtInicio").val() == ""){	
			document.getElementById('msg_dtInicio').style.display = "block";
			if(retorno){
				document.getElementById('dtInicio').focus()
			}
			retorno = false;	
		}		
		if($("#dtFim").val() == ""){	
			document.getElementById('msg_dtFim').style.display = "block";
			if(retorno){
				document.getElementById('dtFim').focus()
			}
			retorno = false;	
		}
		if($("#strMensagem").val() == ""){	
			document.getElementById('msg_strMensagem').style.display = "block";
			if(retorno){
				document.getElementById('strMensagem').focus()
			}
			retorno = false;	
		}
			
		if(retorno){
			
			var params = $("#formContato").serialize(); 
			$('#divForm').slideUp(1200);
			$.ajax({
				type: 'POST',
				url: 'formSubmit.php',
				data: params,
				success: function(txt){
					$('#message').slideDown(400);
					_gaq.push(['_trackPageview', "/contato-enviado"]);
				},
				error: function(txt){ }
			});
			
		}	
		return false;
	});
});
 
