Recent Questions
Q: We do need the menuitem separation bars as most of the menuitems are quit lengthy, and there needs to be a separation bar to distinguish between them.
A:  If you want to add separators between items you can paste a separatorbetween items or you can set item's border width in the following way: 
  var itemBorderWidth="0 0 1 0"; 
But you cannot enter this value in Deluxe Tuner you should set thisparameter manually. 
You can also create style for the last item with border width = 0: 
  var itemStyles = [ 
 ["itemBorderWidth=0"], 
]; 
To add separators, please, see the following parameters: 
//--- Separators 
  var separatorImage=""; //for subitems 
  var separatorWidth="5"; 
  var separatorHeight="100%"; 
  var separatorAlignment="right"; 
  var separatorVImage="images/public/separator.gif"; //for the top items 
  var separatorVWidth="1"; 
  var separatorVHeight="100%"; 
  var separatorPadding=""; 
You should set a separator in the menuItems, for example: 
  var menuItems = [ 
 ["Home","index.cfm", , , , , , , , ], 
 ["-"], 
 ["About Us","about.cfm", , , , , , , , ], 
];
Q: Are these cool html scripts compatible with .NET?
A: Yes, Deluxe Menu works in .NET. 
Deluxe Menu is a Javascript product. It means that it works on aclient side and it doesn't work on a server side as ASP.NET script. 
So, you can create the menu using standard html page and them movemenu code within .asp page.
Q: I have built a menu with deluxe menu and I have put everything in the same map but the page doesn't display the drop down menu it says there is an error. Could you look what I do wrong? 
A: It is not correctly to write local paths on your website. They won'twork:
<script type="text/javascript" src="file:///C:/Test%20website%202008/x5/data.js"></script></td>
You should upload your data.js file in the same folder with yourdmenu.js file and write:
<script type="text/javascript" src="data.files/data.js"></script></td>
Q: We are showing the "incorrect copyright" on our menu for some reason and I need you to look at the code. It's been this way for about a month. My company is going to make me stop using your menu if I can't get the issue corrected so please help me determine why we are suddenly having this problem. 
 The notice shows up on IE 6, but not IE 7.
 
A: "Incorrect Copyright" means that the script can't find required copyright parameters. 
To avoid this, please, change: 
<script type="text/javascript" language="JavaScript1.2" src="dmenu.js"></script> 
to: 
<!-- Deluxe Menu --> 
<noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript> 
<script type="text/javascript" language="JavaScript1.2" src="dmenu.js"></script> 
<!-- (c) 2006, Deluxe-Menu.com, http://deluxe-menu.com -->