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