$(document).ready(function(){
	
	$('a.inativo').attr("href","javascript:void(0);");
	
	$('.todosVideos').hide();
	
	$('.todosVideos:first').show();
	
	var indice = 0;
	
	var tamanho = $('.todosVideos').length;
	
	$('.next').click(function(){
	
		if(indice < tamanho-1)
		{
			var atual = $('.todosVideos:visible');
			indice++;
			atual.hide();
			$('.todosVideos:eq(' + indice + ')').show();
		}
	});
	
	$('.previous').click(function(){
		if(indice > 0)
		{
			var atual = $('.todosVideos:visible');
			indice--;
			atual.hide();
			$('.todosVideos:eq(' + indice + ')').show();
		}
	});
});
