Recent Questions
Q: I have read your http://deluxe-tree.com/whats-new-info.html.
 And really I do not understand this phrase:
 - Item ID format has changed. It depends on the parent ID = [parent ID]i[item index]. 
 Examples: for the first level dtree _0i0, dtree_0i1..., for the second level dtree_0i1i0,dtree_0i1i1, dtree_0i1i2...
 Where do I fill in?
 Do I have to rename my cascading menu titles? 
A:  Actually you shouldn't change anything.
This info is for the customers who use these indexes (dtree_0i1i2) only.Q: Hello I purchased the deluxe menu for single website. I have a mac computer and cant open the exe installation file of drop down menu maker inside of it. Can I get around this problem? Please help asap. 
A:  Download trial package from our website on MAC.
You can find HTML version of drop down menu maker (MAC version) there.
See more info:
http://deluxe-menu.com/deluxe-tuner-info.html
Q: I would like to have submenu’s border to be the same for first and second level of submenu. 
“Management” item goes over “Staff” item. 
I want the same for “Staff” over “Provincial Office” 
A: Try to set the following parameters: 
//------- Submenu Positioning ------- 
  var topDX = 0; 
  var DX = 0; 
Q: Can data be loaded dynamically? 
 For example, can your dhtml menu source code load the child of a node once the node is clicked on? 
A:  You can use AJAX like technology.
http://deluxe-menu.com/ajax-technology-menu-sample.html 
You may generate a menu from a database or XML using any server-side script, e.g., PHP, ASP, VB, etc. 
However, these scripts don't work inside of Javascript .js files, so, you should move parameters of a menu from a .js file into an html-page, e.g.: 
<!-- Deluxe Menu --> 
<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> 
<!-- (c) 2006, http://deluxe-menu.com --> 
<script type="text/javascript" language="JavaScript1.2"> 
 // and describe parameters of a menu 
   var parameter1=value1; 
   var parameter2=value2; 
 etc. 
   var menuItems = [ 
 // here you generate items using server-side scripts (php, asp, vb, etc.) 
 ];
</script> 
The example of the menu working with PHP/MYSQL you can find here: 
http://deluxe-menu.com/rq-loading-bar-MySQL-support.html