$(document).ready(function(){
				$(".resposta").hide();
				$(".mostrar1").click(function(event){
					event.preventDefault();
					$(".resposta1").show("slow");
				});
				$(".ocultar1").click(function(event){
					event.preventDefault();
					$(".resposta1").hide("slow");
				});
				
				$(".mostrar2").click(function(event){
					event.preventDefault();
					$(".resposta2").show("slow");
				});
				$(".ocultar2").click(function(event){
					event.preventDefault();
					$(".resposta2").hide("slow");
				});
				
				$(".mostrar3").click(function(event){
					event.preventDefault();
					$(".resposta3").show("slow");
				});
				$(".ocultar3").click(function(event){
					event.preventDefault();
					$(".resposta3").hide("slow");
				});

				$(".mostrar4").click(function(event){
					event.preventDefault();
					$(".resposta4").show("slow");
				});
				$(".ocultar4").click(function(event){
					event.preventDefault();
					$(".resposta4").hide("slow");
				});
				
				$(".mostrar5").click(function(event){
					event.preventDefault();
					$(".resposta5").show("slow");
				});
				$(".ocultar5").click(function(event){
					event.preventDefault();
					$(".resposta5").hide("slow");
				});
				
				$(".mostrar6").click(function(event){
					event.preventDefault();
					$(".resposta6").show("slow");
				});
				$(".ocultar6").click(function(event){
					event.preventDefault();
					$(".resposta6").hide("slow");
				});
				
				$(".mostrar7").click(function(event){
					event.preventDefault();
					$(".resposta7").show("slow");
				});
				$(".ocultar7").click(function(event){
					event.preventDefault();
					$(".resposta7").hide("slow");
				});
				
			});
