Recent Questions
Q: Is it correct that in vertical collapse menu you can specify your target as a different frame?
A: Yes, you can specify frame name as the target in Deluxe Tree:
  var titemTarget="frame";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
Q: How do I make buttons in the navigation bar example transparent? 
 
A: To set transparent background for the menu you should set:
  var menuBackColor="transparent";
Q: I'm using your menu for my customers.
 IHtml menu script works really great but since your last updates I'm really missing the parameter smviewtype=3, so I can have a subnavigation going other direction as usual.
 Since you had this feature build in I choosed your menu and did a lot of programming, to get it integrated into contenido cms system.
 I would be very pleased, if you could help me on this point. 
A:  You should set the way you show submenus using subMenuAlign and subMenuVAlign parameters.See more info here:
http://deluxe-menu.com/ways-showing-submenus-sample.html