$(document).ready(function() {
    
   setDocumentProps(); 
});

function mostraVencedores(){ 
    document.getElementById('VencedoresCalendario').style.display="block";
	document.getElementById('EtapaCalendario').style.display="none";
}

function ocultaVencedores(){
     document.getElementById('EtapaCalendario').style.display="block";
	document.getElementById('VencedoresCalendario').style.display="none";
}

// Galeria de Etapas, Vencedores e Participantes
function setDocumentProps() 
{  
	$('#calendarioEtapas').show();
	$('#calendarioEtapas').cycle({
		fx:     'fade',
		timeout: 0,
		speed: 800,
		next:   '.nextEtapa',
		prev:   '.previousEtapa',
		pager: '.numbers'
	});
	
	$('.participantesLista').show();
	$('.participantesLista').cycle({
		fx:     'fade',
		timeout: 0,
		speed: 800,
		next:   '.nextParticipante',
		prev:   '.previousParticipante',
		pager: '.numbers'
	});
	
	$('#vencedoresLista').show();
	$('#vencedoresLista').cycle({
		fx:     'fade',
		timeout: 0,
		speed: 800,
		next:   '.nextVencedores',
		prev:   '.previousVencedores',
		pager: '.numbers'
	});
	
	$('.nomeCategoria a').click(function() {
		$('.nomeCategoria a').removeClass();
		$(this).addClass('categoriaAtiva');
	});
	
}
