I am actualy trying to implement the jquery aim menu plugin on my page
What I cant handle is that drupal sets the first and secound level of the menu at the exact same classes and i have no idea what i should tell jquery to use as his selector.
I started with something like that about 3 hours ago
$("#main-menu").menuAim({
activate: function(a){
$(this).children('ul').css('display','block');
}, // fired on row activation
deactivate: function(a){
$(this).children('ul').css('display','none');
} // fired on row deactivation
});
Any idea how to fix that?