Ok, maybe you can't understand much from the title, so I'll try to explain it a bit more in here. Basically I have a navigation, like this:
<ul class="primaryNav">
<li class="nav1"><a href="#" class="inactive" title="About us">About us</a></li>
<li class="nav2"><a href="#" class="inactive" title="Our world">Our world</a></li>
<li class="nav3"><a href="#" class="active" title="Active menu link">Active page</a></li>
</ul>
Now I'm on the "Active page" page and the "Active menu link" is active as you can see (the class is set manually by me on each page). The user can navigate through that other menus (hover them) and they become active, and my "Active menu link" inactive and so on. (through jQuery)
Well, what I'm trying to do, is, once the user stops navigating through my menu, and move mouse cursor outside the navigation container (let's say), set back to "active" the "Active menu link" wich was initially active, with some timeout, maybe.
Hope I was clear enough about what I'm trying to achieve.
Thanks, Adrian