I'd like to create a very simple horizontal navbar based on the following HTML:
<div id="nav">
<ol class="clear">
<li><a href="#">Parent 1</a></li>
<li><a href="#">Parent 2</a>
<ul class="clear">
<li><a href="#">Child 1</a></li>
<li><a href="#">Child 2</a></li>
<li><a href="#">Child 3</a></li>
</ul>
</li>
<li><a href="#">Parent 3</a></li>
</ol>
</div>
..it would show subnav (if exists) on mouseover.
I know about the great SuperFish plugin, but I'd like to keep it really simple here and not use any plugins if possible.
Many thanks!