$(function(){
  
  // $('<span>/</span>').prependTo($("#menu .pages li:not(:first)"));
  
  $('#menu .sub label').click(function(e){
    $(this).next().toggle();
  });
  
});
