Recent Questions
Q: The buttons show up just fine in IE, but not in the other browsers. I am using Frontpage for my html. 
A: Your file names are incorrect.
For example, now you have: 
Button gold side 2 NEW.GIF 
Button purple side 2 NEW.GIF 
Firefox and Opera cannot open a file with blanks in the name. 
Please, rename your files, for example: 
Button_gold_.GIF 
Button_purple.GIF 
Your menu will work fine. 
Q: I'm trying to disable a javascript mouse over menu item using the MS Office style 2 template and having no luck. Can you please provide me a sample of the MS Office style 2 template that will disable an item on the menu by graying it out? 
A:  To disable menu item you should set "_" target for it.
If you want that your disabled items have a grey color (in css-basedmenu) you should create additional style for it and assign this stylefor the disabled items:
 ["CSSText=toptext_dis,toptext_dis"], 
 .toptext_dis
{
 font: normal 11px Tahoma, Arial;
 color: #AAAAAA;
 padding: 3px;
} 
  ["|What's New","", "images/icon_office_note.gif", "images/icon_office_note2.gif", ,"_","1", , , ],
    ["||Popup Mode (Contextual Menus)","", "images/icon_office_mark.gif", "images/icon_office_mark.gif", ,"_","1", , , ],
You can find more info about menu items here:
http://deluxe-menu.com/menu-items-info.html
Q: Is it possible to not download (pre-load) the images in the javascript menu array (some attributes in the data.js file ..)?
 I would like to download them only on rollover on the submenu... I am aware of the ajax version of the menu, but .... 
A:  Set the following parameter:
  var dm_writeAll=0;
You can also use AJAX feature, see more info here:
http://deluxe-menu.com/ajax-technology-menu-sample.htmlQ: Thank you for the information. I have been successful in getting the drop down menu select to appear on my index.htm file. 
 I'm having some problems fine tuning it. I placed the code and files as indicated on the file. What I get is a menu appearing at the top of the page and a link titled: Trial Version where I want the menu to appear.
 The other problem I am having is that the drop down menu select is left justified and I would like it to be centered on my page (table).
A: Check that you're using relative position for the drop down menu select. You shouldset:
  var absolutePos=0;
  var posX="0px";
  var posY="0px";