First let's clean up the page a bit. The jQuery library is not associated with it, so get rid of this:
Code:
<script type="text/javascript">
$(document).ready(function(){
$('ul.quickTree').quickTree();
});
</script>
You have no treemenu2, so get rid of this (highlighted):
Code:
<script type="text/javascript">
//ddtreemenu.createTree(treeid, enablepersist, opt_persist_in_days (default is 1))
ddtreemenu.createTree("treemenu1", true)
ddtreemenu.createTree("treemenu2", false)
</script>
Now, it appears to be simple to get the effect you want. In this section of your markup, add the highlighted:
Code:
<li><strong onclick="ddtreemenu.flatten('atm', 'expand');">Air Traffic Management (ATM)</strong>
<ul id="atm">
<li>Control Tower
<ul>
<li>User Requirements</li>
<li>Regulatory requirements compliance</li>
<li>Equipment Specifications</li>
<li>Safeguarding</li>
<li>Interoperability</li>
</ul>
</li>
<li>Airfield Operation
<ul>
<li>Technical Systems</li>
<li>Processes</li>
<li>Procedures</li>
</ul>
</li>
<p>View our <a href="ATM_project_management.php">ATM Project Management</a> page</p>
</ul>
</li>
Bookmarks