	$(function(){
        $('li:has(ul)')
          .click(function(event){
            if (this == event.target) {
              if ($(this).children().is(':hidden')) {
                $(this)
                  .children().slideDown();
              }
              else {
                $(this)
                  .children().slideUp();
              }
            }
            /*return false;*/
          })
          .css({cursor:'pointer',
                'list-style-type':'none'})
          .children().hide();
        $('li:not(:has(ul))').css({
          cursor: 'default',
          'list-style-type':'none'
        });
      });
