Recent Questions
Q: When I add links to the java pop up menu items, the mouse icon does not change to the usual pointer on hover. Any ideas? 
A:  You should set the following java pop up menu parameter:
  var itemCursor="pointer";
Q: I’m interested in buying your products. 
 I have no experience in programming, only know html/php. 
 How easy would it be to set up these mouseover menus? 
 I understand your explanation of copying scripts into the relevant html pages.
 But what about inserting the menus? Do I have to program them myself?
A:  Unfortunately we don't have step by step tutorial now. We'll try tocreate it in the nearest time.
1. Create your menu in Deluxe Tuner application.
You can create any menu as you like in Deluxe Tuner.
You can use ready to use templates. You can find them in the templateswindow.
When you open Deluxe Tuner ( Deluxe Menu ) you can click "File/New"
and add items and subitems using buttons "Add Item" and "Add Subitem" onthe main window.
You should set items and subitems parameters on the "Item Parameters"window.
See also other parameters for the menu on the main window.
More info about menu parameters you can find on our site
 (you can alsouse local version of the site which you can find in the trial package
"Deluxe Menu / deluxe-menu.com /")
http://deluxe-menu.com/parameters-info.html
http://deluxe-menu.com/menu-items-info.html
You can also use Individual Styles for items and subitems:
http://deluxe-menu.com/individual-item-styles-info.html
http://deluxe-menu.com/individual-submenu-styles-info.html
2. You should install the menu on your page.
You can click, for example, File/Export to HTML (you can't do it inthe MAC version).
Add several rows into your html page.
<head>
...
 <!-- Deluxe Menu -->
 <noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript>
 <script type="text/javascript">  var dmWorkPath="deluxe-menu.files/";</script>
 <script type="text/javascript" src="deluxe-menu.files/dmenu.js"></script>
 <script type="text/javascript" src="data-deluxe-menu.js"></script>
 //data-deluxe-menu.js - data file created in Deluxe Tuner.
...
</head>
<body>
...
<table>
<tr><td>
<script type="text/javascript" src="deluxe-menu.files/data.js"></script>
</td></tr>
</table> 
...
</body>
You should also copy all engine files:
dmenu.js
dmenu4.js
dmenu_add.js
dmenu_dyn.js
dmenu_key.js
dmenu_cf.js
dmenu_popup.js
dmenu_ajax.js
dmenu_search.js
into "deluxe-menu.files/" folder. 
You should place this folder in thesame folder with your index. html page.
Try that.Q: I dowloaded the free trial of this product and I am trying to figure out how to put dhtml pulldown menu into a website that I have built with Homestead.com's Site Builder. I just CANNOT figure out what all I need to do to get it to work.
 I am willing to pay for someone to install it or pay for the product but I need to make sure it will work on this site! 
A:  Unfortunately we don't work with HOMESTEAD.com page builder.
1. upload the folder with all menu files in the same folder with your html page.
2. open the page in your program
3. open html source code of the page
4. add several rows of code (<script> tags), For info see: http://deluxe-menu.com/installation-info.htmlQ: I have a web site in which I am using Deluxe Menu in the top frame as a menu that crosses the frame and a menu in the lower frame that uses it as a menu in the same frame. 
 However, if a user selects the menu in the upper frame they get the menu that is associated with the menu of the lower frame. 
 The configuration files are names differently. 
 Is there a setting that needs to be set for the menu to distinguish between the two menus instantiations? 
A: I suppose that you have two entries of dmenu.js file on your site in the  tag.
You must have only one entry of dmenu.js file.
Please, delete the same code. 
You should write so: 
<head> 
 <!-- Deluxe Menu --> 
 <noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript>
 <script type="text/javascript">  var dmWorkPath = "menu2.files/";</script>
 <script type="text/javascript" src="menu2.files/dmenu.js"></script>
 <!-- (c) 2006, by Deluxe-Menu.com --> 
</head> 
<body> 
... 
<div> 
<SCRIPT src="deluxe-menu_files/data-deluxe-menu.js" type=text/javascript></SCRIPT> 
</div> 
... 
<div> 
<SCRIPT src="deluxe-menu_files/data-deluxe-menu11.js" type=text/javascript></SCRIPT> 
</div> 
... 
</body>>