// JavaScript Document
$(document).ready(function()
{
    // First we hide all exhibitis 
    if ($("#submenu li.active").length == 0) {
        $("#submenu").hide();
    }    


    // This is the toggle function
    // first it hides all sections
    $("#menu ul li.section-title").click(function()
    {
        //$(this).attr('class', 'active');
        //$("#submenu").slideToggle("fast");
    });

});


function style_list(group, name)
{
// group is the section - start from 0 when counting
// name is the class name you will attach to the ul
//$("#menu ul:eq(" + group + ")").addClass(name);
}
