Recent Questions
Q: I want to be able to pull information into dynamic drop down menu from the mysql database. 
A: 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) 2008, 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: Images don't appear in my menu. 
A: Now you have two lines: 
<SCRIPT type=text/javascript>  var dmWorkPath = "../misyssbm.files/";</SCRIPT> 
and 
<SCRIPT type=text/javascript>  var dmWorkPath = "../side_menu.files/";</SCRIPT> 
But you should have only one line. 
Please, check it. 
Q: I am using your Ajax menu and am generally delighted with it. Its ability to load sub menus on the fly is just what I have been looking for.
 However, I have noticed in IE7 that it can leave sub menus displayed when you have moused off that particular ajax drop down menu. Can this be fixed?
 Also, can you get the menu to disappear when you mouse off the menu, rather than having to hover over another menu or click the page off the menu. 
A:  See, now you've set the following parameter:
  var smHidePause=-1;
It means that your submenus won't be hidden till you click or scroll your page.
If you want to hide your submenus on mouse out you should set another value, for example:
  var smHidePause=1000;
or
  var smHidePause=500;Q: How to include the search box? With javascript menu maker there is not the option...
A: Use the following javascript menu parameter to enable/disable the "search support" for the Deluxe menu:
  var dmSearch=2; 
0-nosearch; 1-ordinary search (within one level of submenus only); 2-recursive (within the whole menu).
Set item's link to "search:", for example:
 ["","search:value='search...' style='border:1px;width:60px;height:14;font-size:10px;'", "", ],