/**
 * @author Martin
 */

jQuery(document).ready(function() {
	jQuery("#clientarea-navigation ul > li").hover(
      function() {
        jQuery(this).addClass('hover');
      }, 
      function() {
        jQuery(this).removeClass('hover');
      }
    );
});


