$(document).ready(function(){

    $(".containerDisco, .descricaoEspetaculo").hide();
    
	$('.expandir').click(function(){
	   var click = $(this);
	   $('.expandir').each(function(){
	       if($(this) != click)
           {
            $(this).removeClass('ativo');
           }
	   });
	   $(this).toggleClass('ativo');
	   $('.expandir:not(.ativo)').next().slideUp("slow");
       $(this).next().slideToggle("slow");
	});
	
});