Recent Questions
Q: How can I set the top-level hover menu items to be transparent? 
A: 	You should create Individual Item and Submenu styles with transparent itemBackColor and assign it for the top items:
  var itemStyles = [
 ["itemBackColor=transparent,transparent","itemBorderWidth=0","fontColor=#000000,#000000"],
];
  var menuStyles = [
 ["menuBackColor=transparent","menuBorderWidth=0"],
];
Q: I have made a test page.
 When you click on 'Graceland' the html popup window opens and then you can click to play the video.
 The problem I have is that even when you close the window (assuming the video is not finished) the sound keeps playing. Is there a way to stop this and also stop the download? 
A:  When you close the html popup window script only hide it. So you video willbe still playing.
You can try to change the content of the popup window before you closeit.
Q: I would like to separate each main js dropdown menu item (Find an Expert, Contact...etc) with a dotted line graphic. If you look at the js dropdown menu, you will see that each graphic is separated by a dotted line. I am trying to replicate that look in the Deluxe Menu. Is there a way I can do that? I tried to use the "separatorImage" value in the DeluxeTuner, but it didn't seem to do anything. Is there a way to put a dotted border just along the bottom of them item, instead of around the whole item (like a box)? Or is there a way to insert the graphic between the items?
A:  To add a separator you should
//--- Separators
  var separatorImage=""; //for subitems (top items in vertical menu)
  var separatorWidth="100%";
  var separatorHeight="3px";
  var separatorAlignment="right";
  var separatorVImage="separator.gif"; //for the top items (subitems items in vertical menu)
  var separatorVWidth="100%";
  var separatorVHeight="2px";
  var separatorPadding="";
You can create separators using menuItems, for example:
  var menuItems = [
 ["item 1"],
 ["-"], // this item is separator
 ["item 2"],
];
Q: I'm having a major problem centering html menu navigation in a table.
No matter what I try, the menu stays on the left ofthe table.
 Do you have any suggestions? 
 
A: To center the menu on your html page you should set the following
parameter and install the menu in the following way:
  var absolutePos=0;
<div align=center>
<script type="text/javascript" src="deluxe-menu/dmenu.js"></script>
</div>
<table width=800>
<tr>
<td align=center width=600><script type="text/javascript" src="data/data.js"></script></td>
</tr>
</table>