Recent Questions
Q: How does one go about changing the parameter or the menu in java script so that a menu selection stays 'on'?
In other words, the menu remains selected, perhaps in a background color that shows the user this menu choice is selected and the user is in the selected menu area.  
A: To save your navigation path you should set the following parameter:
  var saveNavigationPath = 1;
The menu keeps items highlighted during menu navigation.
0 - disabled, 1 - enabled (default).
You can highlight menu items by default in two ways:
1) Set the pressed item on each page idividually using the following parameter:
  var pressedItem = -2;
The toggle mode. Sets an index of an item that will be highlighted by default.
-2 - the toggle mode is disabled;
-1 - the toggle mode is enabled, but no items highlighted by default;0,1,2,3,... - index of highlighted item in a top-level menu.
- delete   var pressedItem=1; parameter from your data file
- set correct parameter on each page before you call data file, for example:
<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">  var pressedItem=2;</script>
...
<script type="text/javascript" src="menudir/data.js"></script>
2) Set the pressed item/subitem using dm_ext_setPressedItem () function. 
Please see more info here:
http://deluxe-menu.com/highlighted-items-sample.htmlQ: Once again, I need your help....I have gone through my eniter site to fix what it takes to keep this menu from hiding the flash header when you role over the main menu items. It still hides. The problem still exists. Help! 
A:  You should add the following function in the beginning of your data file 
function dm_ext_ruleObjectHide() 
{ 
 // Safari detect 
 if ((parseInt(navigator.productSub)>=20020000) && (navigator.vendor.indexOf('Apple Computer') != -1) && (navigator.product=='Gecko')) 
 return true; 
 else 
 return false; 
} 
You should add this function each time you change your menu in DeluxeTuner as it deletes this function from your data file.
Q: How do assign my own onclick events to menu options for the dhtml menubar?
 I want do more than just redirect to an href.
A:  Actually you can use your own Javascript code instead standard links.
For example:
 
   var menuItems = [
 ["text", "javascript:your_code_here"]
 ]; 
 
 or
 
   var menuitems = [
 ["<div onClick='your_code_here'>item text</div>", ""]
 ];
 Q: I was wondering if there is a way to disable links on a page for the script menu.I am creating a site where, in a certain mode, the page is in preview and Idon't want the links to work.
A: To disable your menu items you should set the following parameter to disable all items:
  var itemTarget="_";
Or you can disable items individually.
 ["Home","testlink.html", "", "", "", "_", "", "", "", "", "", ], //disabled
 ["Product Info","", "", "", "", "", "", "", "", "", "", ],
  ["|Features","testlink.html", "", "", "", "_", "", "", "", "", "", ], //disabled
  ["|Installation","", "", "", "", "", "", "", "", "", "", ],
You can also use function dm_ext_changeItem (menuInd, submenuInd, itemInd, iParams)
function to disable items on-the-fly, for example:
dm_ext_changeItem (0, 2, 3, ["", "", "", "", "", "_", "", "", ""]);