Ok, there may be other errors, but one obvious one I see now is the DIV:
Code:
<div class="chromestyle" id="chromemenu">
</div>
It should wrap around just the main menu headers, and NOT all the sub menus as well as you have now. So something like:
Code:
<div style="height:23px" id="middler">
<ul>
<li><a href="http://jmatula.co.cc" rel="dropmenu0">Home</a></li>
<li><a href="#" rel="dropmenu1">Stickfigs</a></li>
<li><a href="#" rel="dropmenu2">2008-2009 Season Art</a></li>
<li><a href="#" rel="dropmenu3">Piano</a></li>
<li><a href="#" rel="dropmenu4">Development</a></li>
<li><a href="#" rel="dropmenu5">Other</a></li>
</ul>
</div>
Bookmarks