// JavaScript Document
$(document).ready(function(){
	$('#nav').spasticNav({reset : 500});
	if($('#slideshow').length > 0)
		$('#slideshow').slideshow();
	if($('#contato').length > 0)
		$('#contato').processarFormularioContato();	
		
		
	if($('#lista-exercicios').length > 0){
		$('#lista-exercicios table a').lightBox();
		
		var tabelasImagem = $('#lista-exercicios table'),
			size = tabelasImagem.size(),
			btnAnterior = $('#lista-exercicios .anteriores'),
			btnProximo = $('#lista-exercicios .proximas'),
			tabelaAtual = tabelasImagem.first(),
			idTabelaAtual = 0;
		
		tabelasImagem.parent().css({position : 'relative'});
		tabelasImagem.parent().parent().css({height:'600px'});
		tabelasImagem.css({position:'absolute'});
		
		tabelasImagem.hide();
		
		btnAnterior.hide();			
		tabelaAtual.show();
		
		btnAnterior.click(function(){
			idTabelaAtual--;	
			
			if(idTabelaAtual == 0)
				btnAnterior.fadeOut('slow');
			if(idTabelaAtual == size-2)
				btnProximo.fadeIn('slow');
				
			tabelaAtual.fadeOut('slow');	
			tabelaAtual = $(tabelasImagem.get(idTabelaAtual));
			tabelaAtual.fadeIn('slow');
				
					
			return false;	
		});
		
		btnProximo.click(function(){
			idTabelaAtual++;
			
			if(idTabelaAtual == size-1)
				btnProximo.fadeOut('slow');
				
			if(idTabelaAtual == 1)
				btnAnterior.fadeIn('slow');
				
			tabelaAtual.fadeOut('slow');	
			tabelaAtual = $(tabelasImagem.get(idTabelaAtual));
			tabelaAtual.fadeIn('slow');
				
						
			return false;	
		});
		
		
	}
	
	if($('#ytvideo').length > 0){
		$("ul.lista-reproducao").ytplaylist({
			autoPlay : false	
		});
	}
});
