Recent Questions
Q: Are vertical menus also supported, because I don't see any in the javascript menu examples?
A: Yes, you can create vertical menu with Deluxe Menu. 
You should set this parameter: 
  var isHorizontal=0; 
 
See one of the javascript menu examples here: 
http://deluxe-menu.com/data-templates/win98-style-1-template-sample.html 
Q: We recently purchased your full package, and I have a couple of questions regarding deluxe-menu in particular.
 1) I'd like to change what's in the noscript area to something other than an ad for you in the event my user has JavaScript disabled. I can understand the copyright remaining intact, however I don't believe I should have to display this to my users in the noscript. 
 2) I'm using this inside our firewall on a VPN intranet application. Am I going to have issues with the key if the site has multiple host headers and domains attached to it?
 
A: Thanks for your interest in our products.
1) If you delete noscript tag from your pages you'll see "IncorrectCopyright" message in IE. 
You can generate search engine friendly code. When JavaScript isdisabled you will see the links. 
 Deluxe Menu is a search engine friendly menu since v1.12. 
To create a search engine friendly menu you should add additional html code within your html page:
<div id="dmlinks"> 
<a href="http://deluxe-menu.com">menu_item_text1</a> 
<a href="http://deluxe-tree.com">menu_item_text2</a> 
...etc. 
</div> 
To generate such a code use Deluxe Tuner application. 
You can find this GUI in the trial package. 
Run Tuner, load your menu and click Tools/Generate SE-friendly Code (F3). 
2) Deluxe Menus support multiple keys in one data file,so you can apply the following syntax to use the same html codeunder multiple domains: 
  var key ="THE_FIRST_KEY"; //sandvine.com 
  var key1="THE_SECOND_KEY"; //salestools 
...
Q: The submenus are going up instead of down in the sub navigation bar. 
A: You should set the following parameter:
  var subMenuVAlign="top";
Q: I am looking to get the Floating to work for the flash drop down menu. 
 
A: To enable floating feature you should set the following parameters:
  var absolutePos=1;
  var floatable=1;
Check also that you have dmenu_add.js file in the same folder withdmenu.js file.