The HTML for all your sub lists are broken/ incorrect. For example:
Code:
<li><a href="#Sales and Advertising"><strong>Sales and Advertising</strong></a></li>
<ul>
<li><a href="cnn.com">Advertising Work Order</a></li>
<li><a title="cnn.com">Order Logo Merchandise</a></li>
<li><a href="cnn.com">Ads on the Internet</a></li>
</ul>
It should be:
Code:
<li><a href="#Sales and Advertising"><strong>Sales and Advertising</strong></a>
<ul>
<li><a href="cnn.com">Advertising Work Order</a></li>
<li><a title="cnn.com">Order Logo Merchandise</a></li>
<li><a href="cnn.com">Ads on the Internet</a></li>
</ul>
</li>
The <li> needs to wrap around the entire <ul> sub list. You may want to refresh yourself on the syntax for lists in HTML.
Bookmarks