// JavaScript Document
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 li:eq(" + group + ")").removeClass('section-title').addClass(name);
}