On some of my pages I want Superfish (menu plugin) to unfold one of the first level options by default as soon as the page opens. I attributed this option ul an id="me", and trying to implement "onInit" function, but it does not work. Could someone please look? Thanks.
jQuery(function(){
jQuery('ul.sf-menu').superfish({
onInit: function(){$('#me',this).show();},
});
});