Recent Questions
Q: The dropdown menu works perfect locally, but when hosted it doesnt seen to work, im sorry i dont completly understand what you mean when using the other parameters to make it absolute... here is the html files, and the .js files included in a zip file. 
A:  Now on your website you have the following code: 
 ["Home","C:\Documents and Settings\Josh\Desktop\Josh\Alsek Website\home.htm", , , , "iframe", , , , ], 
 ["Products","", , , , , , , , ], 
  ["|Lift Kits","C:/Documents and Settings/Josh/Desktop/Josh/Alsek Website/Pages/LiftKits.html", , , , "iframe", , , , ], 
... 
On your website you're using paths to the pages situated on a localdisk. It is not right. 
You can try to write 
 ["Home","pages/home.htm", , , , "iframe", , , , ], 
 ["Products","", , , , , , , , ], 
  ["|Lift Kits","pages/LiftKits.html", , , , "iframe", , , , ], 
... 
You can also use pathPrefix_link parameter. 
  var pathPrefix_link = "http://www.domain.com/"; 
and write 
 ["Home","home.htm", , , , "iframe", , , , ], 
 ["Products","", , , , , , , , ], 
  ["|Lift Kits","pages/LiftKits.html", , , , "iframe", , , , ],
Q: The only remaining problem I see is that the dhtml popup menu appears in slightly
different positions depending upon where your mouse touches the icon.
Is there a way to make the menu position absolute in respect to the icon?
I have tried playing with the menu item parameters that seemed related with no success. 
A: See dm_popup() function parameters:
return dm_popup(menuInd, pause, event, x, y)
menuInd - index of the menu on a page, >= 0.
pause - determines the time when the menu will be hidden.
event - constant. Do not change.
x, y - optional. Set these parameters if you want the menu to appear in the specified place.
In other case the menu will be shown in the mouse position.
Q: I would like to call a popup window with javascript from a menu item.
A: You should add the code for popup window on your html page with the menu:
 <!-- Deluxe Popup Window -->
 <noscript><a href="http://deluxepopupwindow.com">menu drop down by DeluxePopupWindow.com</a></noscript>
 <script type="text/javascript" src="deluxe-popup-window.files/dpopupwindow.js"></script>
 <script type="text/javascript" src="deluxe-popup-window.js"></script>
 <!-- (c) 2006, DeluxePopupWindow.com -->
Inside menuItems you should open the window in the following way:
 ["Click to open Popup Window","javascript:deluxePopupWindow.open('window1', 
'http://deluxepopupwindow.com', 'Popup window',
 'width=420,height=300,resizable,scrollbars=no,middle,right,fade-effect', 
'windowsvista_graphite','iframe')",
 "", "", "", "", "0", "", "", "", "", ],
More info about deluxePopupWindow.open() method you can find here:
http://deluxepopupwindow.com/window-installation-info.htmlQ: I currently have the menus set to show the selected item in white and the non-selected items in blue.
 However, I can only choose one item in each menu.
 Is there any way to choose multiple items from a single ajax drop down menu and have all of selected items show white? If so, what option do I need to enable for the ajax drop down menu?
 Programmatically, I think it would be similar to something to:
 dm_ext_setPressedItem (1,1,1);
 dm_ext_setPressedItem (1,1,2);
A: No, Deluxe Menu doesn't has a feature to highlight multiple items now.
Actually you can use the following function:
function dm_ext_changeItem (menuInd, submenuInd, itemInd, iParams)
You can create Individual Item Style with style of selected item andusing this function assign it for the items you want to highlight
dm_ext_changeItem(0, 0, 1, ["Deluxe Menu Info", "", "", "", "ajax drop down menu hint",,"1"]);