Looked at your linked page and I don't see what you describe - "At a glance" and "About us" etc flip over in the way you describe, but I don't see any broken styling.
Or....is "About Ruth" and "About the staff" the dropdown? If so, then your html is wrong - you have:
Code:
<li>
<a class="hovermenu" href="#" style="margin-top: -29px;">About Us</a>
<a class="normalmenu" href="#">About Us</a>
</li>
<ul>
<li><a href="#">About Ruth</a></li>
<li><a href="#">About the Staff</a></li>
</ul>
which should be nested:
Code:
<li>
<a class="hovermenu" href="#" style="margin-top: -29px;">About Us</a>
<a class="normalmenu" href="#">About Us</a>
<ul>
<li><a href="#">About Ruth</a></li>
<li><a href="#">About the Staff</a></li>
</ul>
</li>
Try fixing that first.