/*	
	collapsable.menu.js
	Autor: The nine
	www.elarcadenoe.es
	
	Modified 01/2012 gb/tka
*/

$(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();
	});
	

});
