// JavaScript Document
P(document).ready(function(){

P(".hidden").hide();
P(".show").html("Sobre")
P(".show61").html("Sobre")
P(".show65").html("Sobre")
P(".show68").html("Sobre")
P(".show70").html("Sobre")
P(".show74").html("Sobre")
P(".show77").html("Sobre")
P(".show83").html("Sobre")
P(".show84").html("Sobre")
P(".show89").html("Sobre")
P(".show97").html("Sobre")
P(".show02").html("Sobre");

P(".show, .show61, .show65, .show68, .show70, .show74, .show77, .show83, .show84, .show89, .show97, .show02").click(function() {
if (this.className.indexOf('clicked') != -1 ) {
		P(this).prev().slideUp(500);
		P(this).removeClass('clicked')
		P(this).html("Sobre");
		}
		else {
		P(this).addClass('clicked')
		P(this).prev().slideDown(500);
		P(this).html("Fechar");
		}
});

});

