/*	Autor: The nine
	www.elarcadenoe.es
*/

$(function()
{
	// Ocultar todos
	var obj= $("#menu ul li.section-title").parent();
	$('li:not(:first)', obj).hide();
	
	//mostrar activo
	$("#menu ul").each(function(){
		var obj= $(this).find("li.active").parent();
		$('li', obj).show();
		//$(this).find("li.active").prevAll().nextAll().show();
	});
	
	//Expandir y ocultar
	$("#menu ul li.section-title").click(function(){
		var obj= $(this).parent();
		$('li:not(:first)', obj).slideToggle("fast");
		//$(this).nextAll().slideToggle("fast");
		return false;
	});
	
});
