Recent Questions
Q: How does one go about changing the parameter or the JavaScript so 
that a menu selection stays 'on' for the navigation bar script?
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.html
Q: I've tried to add the pathPrefix_img as suggested and I'm still having trouble with images. 
 Can you provide anymore feedback on what I'm doing wrong? 
A: Now you have such paths: 
  var pathPrefix_img="http://www.domain-name.com/images/";
and 
  var arrowImageMain=["CFTopMenu.files/arrv_white_1.gif",""]; 
So, the full path we'll be: 
http://www.domain-name.com/images/CFTopMenu.files/arrv_white_1.gif 
Is it right? 
I've tried to download your image from this link. There is no such image. 
If you want to put all your images into the "images" folder you should write so: 
  var pathPrefix_img="http://www.domain-name.com/images/"; 
and 
  var arrowImageMain=["arrv_white_1.gif",""]; 
Please, check that you upload all your images on the server in the right places.
Q: Your drop down menu builder makes about every kind of menu except the one that is hot right now...the slider menu. 
A: 	But we have the Tree Menu, http://deluxe-tree.com
It is the slide menu.
See also other APYCOM products:
Deluxe Tabs, http://deluxe-tabs.com
Deluxe Popup Window, http://deluxepopupwindow.com
Calendar Date Picker, http://www.calendardatepicker.com
Vista Buttons, http://vista-buttons.com
Vista Photo Gallery, http://vistaphotogallery.com
Q: My mainmenu items are not links. So i need no link cursor. My submenu item are links, so i need a pointer(hand).
 How can i define 2 different cursors. I tried all the possible settings for the cursor in the program but noting works. 
 I tried is also with a CSS class for the submenu, but that wasn't also working. 
 In brief: i want an arrow cursur in my mainmenu, and an hand cursor in my submenu. With smart scroll doesn't solve my problem. 
 Can you give me a hint to do this. 
A:  Unfortunately, you can't change cursor type for different items. 
But you can write so:
 ["<a href='http://deluxe-menu.com/'>Home</a>","", , , , , , , , ], 
 ["Product Info","", , , , , "0", , , ], 
  ["|What's New","", , , , , "0", , , ], 
In all items with links you should use <a> tag. 
Set this parameter: 
  var itemCursor="default";