//other menu
$nav['other'] = 'Other';
//other subMenu
$nav['other/item1'] = array('label' => 'item1', 'parent_id' => 'other');
$nav['other/item2'] = array('label' => 'item2', 'parent_id' => 'other');
$nav['other/item3'] = array('label' => 'item3', 'parent_id' => 'other', location => ''); // click should go nowhere
// item3 submenu
$nav['item3/sub1'] = array('label' => 'sub1', 'parent_id' => 'item3');
$nav['item3/sub2'] = array('label' => 'sub2', 'parent_id' => 'item3');
$nav['item3/sub3'] = array('label' => 'sub3', 'parent_id' => 'item3');
other menu->
item1->
item2->
item3->
sub1->
sub2->
sub3->
$nav['other/item3'] = array('label' => 'item3', 'parent_id' => 'other', location => '');
or
$nav['other/item3'] = array('label' => 'item3', 'parent_id' => 'other', location => FALSE);
// item3 submenu
$nav['item3/sub1'] = array('label' => 'sub1', 'parent_id' => 'other');
// item3 submenu
$nav['item3/sub1'] = array('label' => 'sub1', 'parent_id' => 'item3');
//other menu
$nav['other'] = 'Other';
//other subMenu
$nav['other/item1'] = array('label' => 'item1', 'parent_id' => 'other');
$nav['other/item2'] = array('label' => 'item2', 'parent_id' => 'other');
$nav['other/item3'] = array('label' => 'item3', 'parent_id' => 'other', location => ''); // click should go nowhere
// item3 submenu
$nav['other/item3/sub1'] = array('label' => 'sub1', 'parent_id' => 'other/item3');
$nav['other/item3/sub2'] = array('label' => 'sub2', 'parent_id' => 'other/item3');
$nav['other/item3/sub3'] = array('label' => 'sub3', 'parent_id' => 'other/item3');
It looks like you're new here. If you want to get involved, click one of these buttons!