Recent Questions
Q: I’m wondering if there is a way to keep the roll over on the current page for the script drop down menu.
 Pleaselet me know if it is possible and what I should do.
A: You can find more info here:
http://www.deluxe-menu.com/highlighted-items-sample.html
Deluxe Menu has only two states normal and mouseover.
Try to do the following things:
- delete   var pressedItem=1; parameter from your data file
- set correct parameter on each page before you call data file, forexample:
<noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript>
<script type="text/javascript">  var dmWorkPath = "menudir/";</script>
<script type="text/javascript" src="menudir/dmenu.js"></script>
...
<script type="text/javascript" src="menudir/data.js"></script>
You can also set a pressed item using Javascript API:
function dm_ext_setPressedItem (menuInd, submenuInd, itemInd, recursion) 
Sets a current pressed item. 
menuInd - index of a menu on a page, >= 0. 
submenuInd - index of a submenu, >= 0. 
itemInd - index of an item, >=0. 
recursion = true/false - highlight parent items. 
But notice, to use dm_ext_setPressedItem() you should know ID of selected item and subitem. 
You can't get this ID after you reload your page. That is why you should write your own code on PHP.
Q: I can't see menu on my test page only direct links... 
A: Now on your page you have only search engine friendly code for Deluxe Menu. You do not have a menu. 
See more info about the installation of the menu here: 
http://deluxe-menu.com/installation-info.html 
You should paste also such lines, for example: 
<script type="text/javascript" src="deluxe-menu.files/dmenu.js"></script> 
and 
<script type="text/javascript" src="deluxe-menu.files/data.js"></script> 
Where data.js is the file with your menu. You can create such file using Deluxe Tuner. 
You should upload this files on your server in the correct place. 
Q: I cannot see the arrow.gif's in my rollover drop down menu.
 Here is my code:
   var arrowImageMain=["menudir/arrow_main3.gif","menudir/arrow_main3.gif"];
   var arrowWidthSub=0;
   var arrowHeightSub=0;
   var arrowImageSub=["menudir/arrow_sub5.gif","menudir/arrow_sub4.gif"];
 Do I need to put the arrow's somewhere else? 
A: 	You should check the following parameter:
  var pathPrefix_img="data-samples/images/";
Please check that you have the correct path to your aroows relative to the folder withindex.html file.
For example, you have:
 menudir/
 menu.js
 dmenu.js
 arrow_main3.gif
 ...
 index.html
In menu.js file you should write:
  var pathPrefix_img="menudir/";
  var arrowImageMain=["arrow_main3.gif","arrow_main3.gif"];
  var arrowImageSub=["arrow_sub5.gif","arrow_sub4.gif"];
or
  var pathPrefix_img="";
  var arrowImageMain=["menudir/arrow_main3.gif","menudir/arrow_main3.gif"];
  var arrowImageSub=["menudir/arrow_sub5.gif","menudir/arrow_sub4.gif"];Q: Am having problems adding to my site. I have a site all made ready to accept the new menu I made in your trial software. I copy code from the exported page over and place where it seems appropriate. When I preview the menu doesn't display but a link to purchase does. Is this because it is the trial software or something else. 
A: When your security settings in browser doesn't allow Javascript onpages you load you can't see a dynamic page content.