jQuery(document).ready(function() {
								
$("#efeito").find("#esconde").hide().end().find("#mostra").css("cursor", "pointer").click(function() {
		$(this).next().slideToggle();
});

$("#efeito").find("#esconde").hide().end().find("#mostra2").css("cursor", "pointer").click(function() {
		$(this).next().slideToggle();
});

$("#efeito").find("#esconde").hide().end().find("#mostra3").css("cursor", "pointer").click(function() {
		$(this).next().slideToggle();
});

$("#efeito").find("#esconde").hide().end().find("#mostra4").css("cursor", "pointer").click(function() {
		$(this).next().slideToggle();
});

$("#efeito").find("#esconde").hide().end().find("#mostra5").css("cursor", "pointer").click(function() {
		$(this).next().slideToggle();
});

$("#efeito").find("#esconde").hide().end().find("#mostra6").css("cursor", "pointer").click(function() {
		$(this).next().slideToggle();
});

    $("#mostra").click(function () {
      $(".span").toggle();
    });

	$("#mostra2").click(function () {
      $(".span2").toggle();
    });
		
	$("#mostra3").click(function () {
      $(".span3").toggle();
    });

	$("#mostra4").click(function () {
      $(".span4").toggle();
    });
	
	$("#mostra5").click(function () {
      $(".span5").toggle();
    });
	
	$("#mostra6").click(function () {
      $(".span6").toggle();
    });

});



