Recent Questions
Q: 1: For the deluxe-menu, can I keep a submenu shown even when my mouse pointer is NOT over the submenu anymore (besides the delay functions?) and hides only after a mouseclick somewhere (like the Microsoft menu of outlook)? 
 2: Is there a way to use the smartscrolling function (for a vertical menu) on the MAIN menu instead of only for the submenu's?
 
A: 1) Unfortunately, you can't do it. 
You can use Deluxe Tree, 
http://deluxe-tree.com 
2) Yes, you can't use scrolling in the main menu. But if you have verylarge menu you can use multilevel menu, 
http://deluxe-menu.com/multilevel-menu-sample.html 
Theoretically we can do scrolling in the main menu, but we think that it will be better touse multilevel menu in that case. 
Q: I tried the following for subitem and it worked but not working with the "Title item" (Group or header item), is there a way to process onclick for the title item? Thanks again. 
You're able to use Javascript for each item, for example: 
  var tmenuitems = [ 
 ["item text", "javascript:your_code_here"] 
];
A: Unfortunately, title items doesn't allow to use Javascript in the sameway.
But you can do the following: 
  var tmenuitems = [ 
 ["<div onclick='your_code_here'>title text</div>"] 
];
Q: When you hover over words the background color is light blue - How do I change dhtml context menu so that the color when you hover over items is different?
A: You should change the following parameter:
  var itemBackColor=["#FCEEB0","#65BDDC"];
Q: I have tested and tested but can't find out how I can add the following, as a link in drop down navigation bar. Can you please help?
 http://domain.no/secure/modules/tutorials/cpanel-x3/cpanel-x3-addon.swf" rel="shadowbox;height=450;width=780" 
A:  You should add <a> tag into the text field in that case:
["<a href="http://domain.no/secure/modules/tutorials/cpanel-x3/cpanel-x3-addon.swf" rel="shadowbox;height=450;width=780">test</a>","",""]
But you should specify a styles for this link also.