The code:
<div id="Navigation"
onmouseover="new Effect.toggle('Drop_Down','slide',{duration: 0.8});"
onmouseout="new Effect.toggle('Drop_Down','slide',{duration: 0.8});">
<div id="Drop_Down">
<% include Navigation %>
</div>
</div>
If I mouseover the Navigation
the Drop_Down
div slides down, and if I mouseout it slides up.
The problem is if I mouseover the child Drop_Down
div it also slides up.
Does anyone know how i can fix that?