Hi, I've spent a lot of time trying to find how to create unique ID for each menu. Let's say I've created some new menus in Administration -> Menu. In page.tpl.php I use this way to insert primary (or secondary) menu:
print theme('menu_links', $secondary_links, array('id' => 'blue', 'class' => 'side-menu'));
Is there any way how to use the same or similar piece of code for my other menu - where can I find how other menus are called? I guess if I knew the name of the array with each menu I would just put there this:
print theme('menu_links', $XXXXXXXXXXX, array('id' => 'blue', 'class' => 'side-menu')); // where $XXXXXXXXXXX is new menu
Is it right? But I don't know where to find it...can anyone please help me with this?
-------------------------------------------------------------------------------------