/*	Autor: The nine
	www.elarcadenoe.es
*/
$(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");
	});
	
	//over
	/*$("#menu ul li.section-title").hover(
    function(){
    $(this).stop().fadeTo("slow", 0.4);
    },
    function(){
    $(this).stop().fadeTo("slow", 1);
    }
    );*/
	
	
	$("#menu ul li.section-title").hover(function() {
    $(this).addClass('pretty-hover');
    }, function() {
    $(this).removeClass('pretty-hover');
    });
	
});
