Recent Questions
Q: I'm in search for a product like "Deluxe Menu".
 Before buying your software, I'd need to know if I can use images (eg *.jpgs) within rollover drop menu instead of just text; my menu items need to be images. Does "Deluxe Menu" support this?
A:  Yes, you can create image-based rollover drop menu.
If item text is empty, icon fields will be used as item images.
 For example:
 ["", "index.html", "itemImageNormal.gif", "itemImageOver.gif", "Home Page"]
Q: it's possible to use on every Item the OnMouseOver / OnMouseOut event?
move the mouse over a Menu !!!!!!
 
A: Each menu items can include any html code. 
So, you can include your own objects with onmouseover event, forexample: 
  var menuItems = [ 
 ["<div OnMouseOver='yourFunc()'>item text</div>"], 
 ["<div OnMouseOut='yourFunc()'>item text</div>"], 
]; 
Where yourFunc() is Javascript function.
Q: Can Deluxe menus work with tables?
 
A: Yes, you can place your menu into the <div> or <table> tag. 
For example: 
 <table> 
    <tr> 
        <td><script type="text/javascript" src="menudir/data.js"></script></td> 
   </tr> 
  </table>
 
Q: I am in the final stages of testing and need some advice and help. 
 I have two problems I am trying to address. 
 1) Arrows on dropdown menu select. 
 2) Load time. 
 Please notice, I have to use absolute paths for the dropdown menu select to work. 
 1) I can't get the arrows to show, so I tried to add the code for images in the first bold sentence below. 
 2) I tried to add the second line for absolute paths for links to increase load time in the second bold sentence. It appears that the load time is increased by about 3 seconds and that the menu is the last to load, even though I have tried to have this as the first html to load. 
 Neither one of my commands appear to work. 
 This site has over 10,000,000 items on it, and I can't wait to get this up and running. Your program is the perfect solution for anybody with a website.
A: 1) Now you have:
  var arrowImageMain=["mainmenu.files/arrv_blue_2.gif","mainmenu.files/arrv_white_2.gif"];
  var arrowImageSub=["mainmenu.files/arr_blue_2.gif","mainmenu.files/arr_white_2.gif"];
You should set your arrows in the following way:
  var arrowImageMain=["arrv_blue_2.gif","arrv_white_2.gif"];
  var arrowImageSub=["arr_blue_2.gif","arr_white_2.gif"];
2) Your menu is very large. I advise you to us AJAX like technology.
http://deluxe-menu.com/ajax-technology-menu-sample.html
You can also try the following things:
move all <script> calls into <head>, but delete dm_init() function from mainmenu.js file -- move them instead offiles calls, i.e.:
<head>
 <script src=mainmenu.js>
 ...
</head>
...
<div><script>dm_init();</script></div>
It this case data will be loaded when <head> will load, but after thatdropdown menu select must be shown quickly.
Let me know about results.