
function trocarFoto(foto)
{
	var img = document.getElementById('foto_quadra');
	img.src = foto;
}



/* Nomes das abas */
var abas = new Array();
abas[0] = 'Desc';
abas[1] = 'Fotos';
abas[2] = 'Mapa';
abas[3] = 'Detalhes';
abas[4] = 'Contato';
abas[5] = 'Depoimentos';




function Mostrar(opcao)
{
	var i;
	
	for ( i = 0; i < abas.length; i++ )
	{
		if ( abas[i] == opcao )
		{
			document.getElementById(opcao).style.display = 'block';
			document.getElementById('op' + opcao).className = 'opcaoSel';
		}
		else
		{
			document.getElementById(abas[i]).style.display = 'none';
			document.getElementById('op' + abas[i]).className = 'opcao';
		}
	}
}



function MostrarMapa(latitude, longitude, html)
{
	Mostrar('Mapa');
	
	if (latitude != '' && longitude != '')
	{
		loadMap(latitude, longitude, html);
	}
	else
	{
		mapa.innerHTML = "<p>Endereço não encontrado</p>";
		mapa.style.height= "100px";
	}
}





