Recent Questions
Q: If I use windows tree menu and published on my web site it is default all javascript tree menu and submenu are opened. I want that all menu is default closed if user click on main menu it will be opened submenu. Please wich parameters I have to change. 
A: 	 You should set the following parameter:
  var texpanded=0;
Check also that you don't have '+' sign before item's text in the top items, for example:
 ["+Home","", "", "", "", "", "", "0", "", ],
 ...
 ["+Item1","", "", "", "", "", "", "0", "", ],
Q: We are using the deluxe menu in one of our projects. The menu works well on our integration system but not on our production system. 
 The only difference is that the integration is running on Tomcat Version 5.5.9 and the production (with the "broken" menu) on Tomcat 5.5.17. 
 But for me it looks more like a browser problem than a JSP problem. 
 Unfortunatley the Tomcat 5.5.17 is our production system so fast help is appreciated.
 
A: Try to set the following parameter: 
  var dmObjectsCheck=1; 
Make sure that you have dmenu_add.js file in the same folder withdmenu.js file.
Q: I need a menu system where on the click of certain items, server side code on the page can be called and executed. Can that be done using deluxe menu?
A:  You can use your own Javascript code instead standard links. For example:
   var menuItems = [
 ["text", "javascript:your_code_here"]
 ];
Q: I have included your menu in my latest site.
 My problem is that the menu javascripts, as opposed to being in a fixed position as stated in the .js file floats up and down with the page... How do I fix this..
 
A: You should set the following parameter to disable the floating feature:
  var floatable=0;