function hideAllPages()
{
    $('.page-list').hide();
}

function togglePages(obj)
{
    $(obj).children('ul').toggle();
}