/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$(document).ready(function()
{

    $(".slider li").each(function()
    {
        $(this).children("dl").hide();

        $(this).children("a:first").click(function()
        {
            if($(this).parent("li").attr("class") == "")
                $(this).parent("li").attr("class","selecionado");
            else
                $(this).parent("li").attr("class","");

            $(this).next("dl").slideToggle("slow");
        });
        
        $(this).children("dl").children(".expand").children("a").click(function()
        {
            $(this).next("ul").slideToggle("fast");
            
            if($(this).parent("dd").attr("class") == "selecionado")
                $(this).parent("dd").attr("class","");
            else
                $(this).parent("dd").attr("class","selecionado");

        });
    });

});

$(document).ready(function()					   
	{	
		$(".erro_javascript").hide(0);
	})
