Recent Questions
Q: Now I need to work out how to add multiple menu's to a page? Are you able to reference these separately - is this possible. 
 The page that I am creating lists out notes from our system - there is a "options" button to the right of each note - when the cursor hovers over this button I want to dynamically load themenu's. On any page there could be over a 100 of these "option" buttons and the menu that would load from each option button could be different and specific to the note.
 
A:  You can add as many menus as you want on the one page.
You should call 
<SCRIPT type=text/javascript>  var dmWorkPath = "data.files/";</SCRIPT> 
<SCRIPT src="data.files/dmenu.js" type=text/javascript></SCRIPT> 
and then call your data files: 
<SCRIPT src="data.files/data1.js" type=text/javascript></SCRIPT> 
<SCRIPT src="data.files/data2.js" type=text/javascript></SCRIPT> 
<SCRIPT src="data.files/data3.js" type=text/javascript></SCRIPT> 
<SCRIPT src="data.files/data4.js" type=text/javascript></SCRIPT> 
> The page that I am creating lists out notes from our system - 
> there is a "options" button to the right of each note - when the 
> cursor hovers over this button I want to dynamically load the 
> menu's. 
 
You can try to use pop up menus 
http://deluxe-menu.com/popup-mode-sample.html 
You may also generate a menus from a database or XML using any server-side script, e.g., PHP, ASP, VB, etc.
Q: I’m very interested in your script of deluxe-menu. 
I tryed your script out and have some questions now: 
How do I highlight main menu items when I selected a main category? 
How do I highlight submenu items when I selected a sub category? 
How can I have a submenu unfoldet when I selected the matching main category? 
I would be pleased to have answers to my questions as soon as possible. 
Thank you for support!
 
A: The menu has only two states normal and mouseover. We'll try to add the pressed state in the future. 
You can set a pressed item using Javascript API: 
function dm_ext_setPressedItem (menuInd, submenuInd, itemInd, recursion) 
Sets a current pressed item. 
menuInd - index of a menu on a page, >= 0. 
submenuInd - index of a submenu, >= 0. 
itemInd - index of an item, >=0. 
recursion = true/false - highlight parent items. 
But notice, to use dm_ext_setPressedItem() you should know ID of selected item and subitem. 
You can't get this ID after you reload your page. That is why you should write your own code on PHP.
Q: I have used your Deluxe-menu on my websit. With the browser Opera I have problems with the dhtml scrolling menu item-color. If I select the menu at the first time, the item color is black. After select a menu item the menu item color is #f0e4cc, this is correct. After re-select the menu the item color is #f0e4cc also. After browser re-start the menu item color is black :-( 
A: 	See it is not correctly to write colors in the following way (without # symbol):
  var fontColor=["f0e4cc","f0e4cc"];
You should write:
  var fontColor=["#f0e4cc","#f0e4cc"];
Your menu will work correctly in all browsers in that case.
Q: I just noticed another problem: when I set dmObjectsCheck=1 and I click on a menu-item of the dropdown menu nothing happens! No matter whether the banner is flash or not. And no matter if the browser is IE or Firefox. As soon as I set dmObjectsCheck=0 the submenu works again.
 
A:  You should set the following parameter 
  var dmObjectsCheck=1; 
You should also add dmenu_add.js file into the folder with yourdmenu.js file. 
Please, check it.