// Atletas

$(document).ready(function(){
		$("#atletas1").hide();
		$("#atletas2").hide();
		$("#atletas3").hide();
		});

function Exibe(Face){

switch(Face)
{
	case 'atletas1':
			 $("#atletas1").show();
		break;
	case 'atletas2':
			 $("#atletas2").show();
		break;	
	case 'atletas3':
			 $("#atletas3").show();
		break;
}

}
	
function Oculta(FaceOculta){
	switch(FaceOculta)
{
	case 'atletas1':
			 $("#atletas1").hide();
		break;
	case 'atletas2':
			 $("#atletas3").hide();
		break;	
	case 'atletas3':
			 $("#atletas3").hide();
		break;

}
	}	
	
	
// Galeria
	
		$(document).ready(function() {
			
			$("a[rel=galeria]").fancybox({
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Imagem ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});

		});
