Recent Questions
Q: There is a very nice facility in the Item "MQ Result". If I select one Subitem the other dhtml navigation menu (opened) Subitem is closed.
 Is there a way to get this facility for Items too? For example, I open "Adresse" and then "Stammdaten Adresse" and then the opened "Adresse" is closed.
A:  You should set the following parameter:
  var tcloseExpandedXP=1;
Q: I am rewriting my homepage in CSS but now I have another problem with the DeLuxe menu.
 The javascript top menu is well positioned on the page but the submenus are not.
 The submenus are not positioned aside the javascript top menu but lower and far to much to the right.
 I changed the variables 
   var posX = 100;
   var posY = 100;
   var absolutePos = 1;
   var topDX = 0;
   var topDY = 0;
   var DX = -3;
   var DY = 0;
   var subMenuAlign = "left";
   var subMenuVAlign = "top";
 Sometimes when I change the variables the submenus are well positioned and then, after enlarging the IE-window, they are not.
 What can I do?
A:  It is possible that you have some problems with your css styles.
See, the problem is that the javascript top menu can't get css properties of the object if they are described in separate .css block (or file).
In other words, you can't get the value of "POSITION: absolute" attribute of the object if the object doesn't have this property within inline style (style="POSITION:absolute;"). To get the value you should move .css style into style="" attribute.
Please, try to add your
 css file -> inline css, for example:
You should add style="POSITION: absolute;"
to the
<div id="block">	
Q: How do I change the background color for the floating drop down menu
A: To change menu colors you should change the following parameters:
  var menuBackColor="#F2F3F2";
  var itemBackColor=["#F2F3F2","#535353"];
You can also use Individual Item Styles to change the color of the specific items:
  var menuStyles = [
 ["menuBackColor=#F2F3F2"],
];
  var itemStyles = [
 ["itemBackColor=#F2F3F2,#535353"],
];
Q: I am using Deluxe-menu 3.0.
 I can add dhtml popup menu items and submenu items. Each new sub menu item is placed at the bottom of that list. How can I move it up in the listing.
 For instance if my menus are:
 2007
 2006
 2005
 2004
 and I add 2008 - it will be placed below 2004, but I want it at the top of the list. Each item in the list has multiple subitems, so I don't want to delete the other items to get it in the correct order.
 I looked through your help file, FAQ and online questions and could not find an answer. 
A: To move items select items you want and use a mouse drag'n'drop method.
To copy dhtml popup menu items select those you want and use a mouse drag'n'drop method holding a Ctrl key.
You can find this info in Tuner's help, "Main Window" sheet.