Recent Questions
Q: Is it possible set a menu item to pressed when a page is loaded when you have multiple drop down menus on the page?   
 I have 2 menus side by side and I was able to set the pressed item with the JavaScript API as described in your FAQs but when I try to show an item as pressed  in a second menu on the same page, the corresponding item in the first menu shows as pressed. Is there a different function that I can use for this or a way to reset the menu ID in the second menu to start from where the first menu left off so I can use the same function?
A:  See the first parameter in 
dm_ext_setPressedItem (menuInd, submenuInd, itemInd, recursion) 
function is index of the menu. 
So, if you use several menus on the one page you should use differentmenuInd parameter. 
For example you have: 
<script type="text/javascript" src="menu/data1.js"></script> //menuInd=0 
... 
<script type="text/javascript" src="menu/data2.js"></script> //menuInd=1
... 
<script type="text/javascript" src="menu/data3.js"></script> //menuInd=2 
... 
<script type="text/javascript" src="menu/data4.js"></script> //menuInd=3 
So, for the second menu you should write:
dm_ext_setPressedItem (1, 2, 5)
Q: I used the glass template to create my menu.... but I needed to add additional tabs, and my additional tabs do not look like the rest of the net dropdown menu tabs... its like the end-caps on the images are not there and I don’t find any clear instruction on how to get my added tabs to look like the existing ones. 
A:  You should assign Individual styles for the new items. You can findthis info in the Templates window.
Q: As I have stated before, your Deluxe-Menu is very very good.
 But there is allways room for improvement.
 Is there any chance to see support for the following in Deluxe-Menu:
 When I move the mousepointer above a menuitem and right-click I would like to see in the javascript contextual menu (the context menu provided by the browser):
 Open Link in new window
 Open Link in new tab
 If the above is not possible or not something you want to enable.... then, there should be possible to make a workaround to make this work:
 I see there is support for custom javascript contextual menus.....
 .... is there any possibility to make a custom context menu that show above a menuitem and that show when right clicking on the menuitem.
 Should hopefully be possible to create in such way that I create one context menu in javascript (the deluxe menu way... ) , but when clicking on "Open link in new window" from that custom menu, then the JS code should call a javascript function of mine (or yours), with a parameter related to the menuitem that was right-clicked...
 And this javascript function should be able to resolve the actual URL (based on the input parameter rel. to the menuitem) and then open a new window using window.open()
 If not possible to implement using the native browser context menu, then I belive it should be possible to do it using my workaround how to.....
 Just a thought.... 
 Any suggestions on how I can make the workaround work, or if maybe you could support the workaround in some way in future releases of Deluxe-Menu? 
A:  Yes, there is a workaround.
You can write your items in the following way:
  ["|<a href='http://www.domain.com' class="link">test test test</a>",""],
You should assign style for this link.
A.link {
...
}
A.link:hover {
...
}Q: I can't find an instance of your java pop menu that can lay over top of a flash object without making the flash object disappear like your demo.
 Does yours or doesn't it do the same thing and if so, where is there an example? 
A:  Deluxe Menu overlaps flash in all browsers. 
You can find fix for Firefox here:
http://www.deluxe-menu.com/objects-overlapping-sample.html