Recent Questions
Q: When I put any new link on my javascript scrolling menu info tree it goes as if I am placing as _blank when I have it leading to _self. 
A:  No you have:
  var titemTarget="_blank";
And you haven't specified "_self" parameter to
    ["||Unilock Fireplace MODS","fireplace_unilock_mods.htm", "", "", "", "", "", "", "", ],
You should set
  var titemTarget="_self";
or set "_self" parameter for each item individually:
    ["||Unilock Fireplace MODS","fireplace_unilock_mods.htm","", "", "", "_self", "", "", "", ],
Q: When I want to have the same width of each item I use the individuel styles sometime it works and sometime not
A: See, when you use Individual styles to set the width for your items 
  var bstyles = [ 
 ["bitemWidth=150px"], 
]; 
you should check that you haven't set the exact width for the menu 
  var bmenuWidth="250px"; 
Please, check it.
Q: Could I create a function that displays thetab that the user clicked in the left tab menu.
 These tabs are all within the same window, sothe page will always be the same. 
Just need a function to make differenttabs appear. 
A: Unfortunately Deluxe Tabs doesn't support API functions now.
You can use the following function to open specific tab:
dtabs_itemClick(menuInd,itemInd);
where
menuInd - index of a tab menu on a page, >= 0.
itemInd - index of a item, >=0.
For example:
<DIV onClick="dtabs_itemClick(0,2)" style="width: 200px; border: 2px solid #000;">Click to open the third tab</DIV>Q: My office-colleague gilles petremand just bought your "deluxe menu" and all-in-all it looks great!!!! 
 What we don't manage to do is to create a moving java menu sample based on. 
 Is this only possible with the "ms office toolbar-like mode" 'coz we'd like to use the image based menue template and change it to a moving one - POSSIBLE?!? 
A:  To create a movable or floatable menu you should set severalparameters in your data file only.
See more info here:
http://deluxe-menu.com/movable-menu-sample.html
To create movable menu you should set the following parameters:
//--- Movable Menu
  var movable=1;
  var moveWidth=12;
  var moveHeight=20;
  var moveColor="#AA0000";
  var moveImage="movepic2x20.gif";
  var moveCursor="move";
  var smMovable=1;
  var closeBtnW=13;
  var closeBtnH=16;
  var closeBtn="closebtn.gif";
http://deluxe-menu.com/floatable-menu-sample.html
To create floatable menu you should set the following parameters:
//--- Floatable Menu
  var floatable=1;
  var floatIterations=6;
  var floatableX=1;
  var floatableY=1;