$(document).ready(function(){

	$('#div_dep').hide();
	
	
	$("a[name='dep']").click(function()
	{								  
		$(this).next().hide();
		$(this).hide();
		$(this).next().next().fadeIn('fast');							  
	});
	
  });

function mostra (id,proximo) {

document.getElementById("pergunta"+id).style.display = "none";
document.getElementById("pergunta"+proximo).style.display="block";
	
}
