$(function() {
                                     
    $('li>span').each(function(){
        $(this).next('ul').hide();
    
        $(this).css('cursor','pointer');
        
        $(this).click(function(){
            $(this).next('ul').toggle();
        });
    
    });
    
    $('li.open>span').each(function(){
        $(this).next('ul').show();
        
        $(this).click(function(){
            $(this).next('ul').toggle();
        });
    });
    
    
    
});
