Recent Questions
Q: I now have the need to introduce separators on the menu. 
 Can you tell me how to do that? 
 I cannot find any documentation telling me how this is done.
 
A: 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="3"; 
  var separatorVHeight="100%"; 
  var separatorPadding=""; 
You should set a separator in the menuItems, for example: 
  var menuItems = [ 
 ["Home","index.cfm", , , , , , , , ], 
 ["-"], 
 ["About Us","about.cfm", , , , , , , , ], 
]; 
Try that.
Q: I am attempting to install a menu I've created into FrontPage2003. 
 I read what the web site says but it didn't seem to work. Any other suggestions?
A: Deluxe Menu wasn't developed as Dreamweaver/Frontpage extension,BUT you can use it as standard Javascript files. To install the menuinto your html page: 
1. open the page in your program 
2. open html source code of the page 
3. add several rows of code (<script> tags), For info see: http://deluxe-menu.com/installation-info.html 
That's all. 
To create and configure your menus use Deluxe Tuner application 
(included into the trial package): http://deluxe-menu.com/deluxe-tuner-info.html
Q: I am trying out your program and it's really sweet. I have 1 little problem. I created the menu everything works in IE7. In firefox the menu is about 4 or 5 px longer. It seems like in firefox there is a border around each top level item although I have set all borders to 0 (I can see that because I have set roolover color of background to opposite of normal color)
 
A:  Try to set exact width for the menu in "px". 
For example: 
  var menuWidth="600px";
Q: Can I make dhtml menu sample so a user can open a link on a Deluxe-Menu in a new browser tab instead of a new window using IE?
 I really like your menu system. 
A:  You can try to write the following code for your items:
 ["<a href='index.html' target='_blank' class='home'>Home</a>","", "", "", "", "", "", "", "", ],
And create styles
.home{
color: #FFFFFF;}
.home:hover{
color: #FFBEBE;}