$(document).ready(function()
{
    $(".CollapsibleList").hide();
    
    $(".Toggle").click(function(event) 
    {
        event.preventDefault();
        $(this).parents().children(".CollapsibleList").slideToggle();
        return false;
    });
});