Hey Guys,
i have a Menu with the following Code:
<div id="head_navigation">
<ul>
<li><a href="javascript:void(0);"><img src="img/start.jpg" width="57" height="40" title="start" alt="" /></a></li>
<li><a href="javascript:void(0);"><img src="img/favoriten.jpg" width="87" height="40" title="favoriten" alt="" /></a></li>
</ul>
</div>
<div id="head_subnavigation">
<ul id="start" class="hidden">
<li><div class="button"><a href="javascript:void(0)" onclick="cwload('arztauswertung.html','start');" title="Rezeptsuche"><img src="img/icons/icon_rezeptsuche_on.png" width="50" height="62" alt="Rezeptsuche" /><br />Rezeptsuche</a></div></li>
<li><div class="button"><a href="javascript:void(0)" onclick="cwload('arztauswertung.html','start');"><img src="img/icons/icon_zuzahlung_on.png" width="50" height="62" alt="Zuzahlung" /><br />Zuzahlung</a></div></li>
<li><div class="button"><a href="javascript:void(0)" onclick="cwload('arztauswertung.html','start');"><img src="img/icons/icon_abrechnung_on.png" width="50" height="62" alt="Abrechnung" /><br />Abrechnung</a></div></li>
</ul>
</div>
'#head_subnavigation' has the CSS "display:none". When i hover Image with Title "start", then the < ul > with ID "start" is shown. And so on.
It works fine, but my Problem is "Mouseout". When i use Mouseout Event for the '#head_navigation', then my subnavigation dissapears when i want to hover the li items on the submenu. You understand what i mean???
How can i use Mouseout only when i jump to another li Item in the "head_navigation" div or on Mouseout the '#head_subnavigation' div, BUT NOT when i move with the mouse from 'head_navigation' to 'head_subnavigation' ??? Can anyone help? Have tried a lot of things - nothing really works... :(
Thanks for that.
Greetings, Sascha
CLARIFICATION
I have a nested navigation menu where the sub-navigation is displayed onmouseover of the image $('#head_navigation img') based on the title attribute.
I would like the sub-navigation to remain open until I mouse out of either the sub navigation or the image.