I am building one of my first web application, and I found some problems in managing a dynamic navigation menu. In particular, I don't know what is the best way (or, almost, a good way) to set a different css class for the current navigation item when a user go to a page.
I have a 2 levels menu, as you can see in this screenshot:

A sample html behind the screenshot:
<ul id="navigation">
<li>
<a href="#" title="Home Page">Home</a>
</li>
<li>
<a href="#" title="Gestione Aree di Servizio">Aree di Servizio</a>
</li>
<li class="mainmenu"><a class="open" href="#">Anagrafica Servizi</a>
<ul style="display: block;" class="submenu">
<li><a href="#" title="Elenco Servizi">Elenco Servizi</a></li>
<li><a href="#" title="Crea un nuovo Servizio">Nuovo Servizio</a></li>
<li><a href="#" title="Visualizza elenco dei Brand" class="open">Elenco Brand</a></li>
<li><a href="#" title="Crea un nuovo Brand">Nuovo Brand</a></li>
<li><a href="#">Genera nuovo report servizi</a></li>
</ul>
</li>
Basically, I add the css class "open" server-side at the current item of the menu. To do this, I set a var currentItem in a backing bean and check for all the menu items if the title of the item equals the currentItem var, every time the navigation menu is loaded. (the technology used in this application is JSF, but I think is not important here).
If the class open is applied to a mainmenu item, it has a blue background. If is applied to a submenu item, it has a blue and bold font.
Moreover, If the current-item is a submenu item, I add via a jQuery script the class open to its parent too, and show the list where the sub-item is (style="display: block;").
I suspect there are better ways to manage a navigation menu like this one, and I ask to you web developers if you have some best practices or patterns to design and manage navigation menus.
Thanks in advance.
(spelling corrections are welcome)
