﻿
$(document).ready(function() {
	$("#texto1").hide('');	
	$("#texto2").hide('');	
	$("#texto3").hide('');	
	$("#texto4").hide('');	
	$("#texto5").hide('');	
	$("#texto6").hide('');	
	$("#texto7").hide('');	
	$("#texto8").hide('');	
	$("#texto9").hide('');	
	$("#texto10").hide('');	
	$("#texto11").hide('');	
	$("#texto12").hide('');
	$("#texto13").hide('');
	$("#texto14").hide('');			

	$("#pergunta1").toggle(function() {
		$("#texto1").hide('');
	}, function() {
		$("#texto1").show('');
	});
	
	$("#pergunta2").toggle(function() {
		$("#texto2").show('');
	}, function() {
		$("#texto2").hide('');
	});
	
	$("#pergunta3").toggle(function() {
		$("#texto3").show('');
	}, function() {
		$("#texto3").hide('');
	});
	
	$("#pergunta4").toggle(function() {
		$("#texto4").show('');
	}, function() {
		$("#texto4").hide('');
	});

	$("#pergunta5").toggle(function() {
		$("#texto5").show('');
	}, function() {
		$("#texto5").hide('');
	});
	
	$("#pergunta6").toggle(function() {
		$("#texto6").show('');
	}, function() {
		$("#texto6").hide('');
	});

	$("#pergunta7").toggle(function() {
		$("#texto7").show('');
	}, function() {
		$("#texto7").hide('');
	});
	
	$("#pergunta8").toggle(function() {
		$("#texto8").show('');
	}, function() {
		$("#texto8").hide('');
	});

	$("#pergunta9").toggle(function() {
		$("#texto9").show('');
	}, function() {
		$("#texto9").hide('');
	});
	
	$("#pergunta10").toggle(function() {
		$("#texto10").show('');
	}, function() {
		$("#texto10").hide('');
	});
	
	$("#pergunta11").toggle(function() {
		$("#texto11").show('');
	}, function() {
		$("#texto11").hide('');
	});
	$("#pergunta12").toggle(function() {
		$("#texto12").show('');
	}, function() {
		$("#texto12").hide('');
	});
	$("#pergunta13").toggle(function() {
		$("#texto13").show('');
	}, function() {
		$("#texto13").hide('');
	});
	$("#pergunta14").toggle(function() {
		$("#texto14").show('');
	}, function() {
		$("#texto14").hide('');
	});
	
});
