$(document).ready(function()
{
// First we hide all exhibitis 
$("#menu ul li.section-title").nextAll().hide();

// then the active exhibit is showed
$("#menu ul").each(function(){
$(this).find("li.active").prevAll().nextAll().hide();
});

// This is the toggle function
// first it hides all sections
$("#menu ul li.section-title").click(function() //com o rato a pasar por cima e .click seleccionando
{
$("#menu ul li.section-title").nextAll().hide()
$(this).nextAll().slideToggle("fast");
});
    

	
});



//$(document).ready(function()
//{
	// Ocultar todos
	//$("#menu ul li.section-title").nextAll().hide();
	
	//mostrar activo
	//$("#menu ul").each(function(){
	//$(this).find("li.active").prevAll().nextAll().show();
	//});
	
	//Expandir y ocultar
	//$("#menu ul li.section-title").click(function(){
	//$(this).nextAll().slideToggle("fast");
	//});
	
//});

	
