Recent Questions
Q: Javascript menu software copyright info is not accepted by Firefox.. 
A:  Try to change ' to ".
So, you should write
<noscript><a href="http://deluxepopupwindow.com">DHTML Window Script by DeluxePopupWindow.com</a></noscript>Q: Is there maybe a way that I can set up the menu so that it does not load at all until someone clicks on, say, a link, such as 'Products' and clicking on that link would then load the java menu buttons onto the page in the desired position? 
A: Yes, you can do it. 
Delete dm_init(); function from data file and use OnClick event foryour 'Products' link. 
<a href="products.html" OnClick="dm_init();">Products</a>
Q: How does one go about changing the parameter or the JavaScript so that a vertical menu selection stays 'on'? In other words, the vertical menu remains selected, perhaps in a background color that shows the user this menu choice is selected and the user is in the selected menu area.
A: To save your navigation path you should set the following parameter:
  var saveNavigationPath = 1;
The menu keeps items highlighted during menu navigation.
0 - disabled, 1 - enabled (default).
You can highlight menu items by default in two ways:
1) Set the pressed item on each page idividually using the following parameter:
  var pressedItem = -2;
The toggle mode. Sets an index of an item that will be highlighted by default.
-2 - the toggle mode is disabled;
-1 - the toggle mode is enabled, but no items highlighted by default;
0,1,2,3,... - index of highlighted item in a top-level menu.
- delete   var pressedItem=1; parameter from your data file
- set correct parameter on each page before you call data file, for example:
<noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript>
<script type="text/javascript">  var dmWorkPath = "menudir/";</script>
<script type="text/javascript" src="menudir/dmenu.js"></script>
<script type="text/javascript">  var pressedItem=2;</script>
...
<script type="text/javascript" src="menudir/data.js"></script>
2) Set the pressed item/subitem using dm_ext_setPressedItem () function. 
Please see more info here:
http://deluxe-menu.com/highlighted-items-sample.html
Q: If i use windows tree menu and published on my web site it is default all menu and submenu are opened .
 I want that all html tree 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", "", ],