Recent Questions
Q: How can I manage that the last clicked javascript expanding tree item stays tree highlighted? 
A: 	We have the following API function to highlight the pressed item in Deluxe Tree
function dtreet_ext_setPressedItem (menuInd, itemID)
But unfortunately this function doesn't work for AJAX submenus.
We'll try to add this feature soon (using save state feature).
Q: Hi, how to change font/size of the main java script pull down menu?
 I see the option only for the sub menus. 
A: I suppose that you're using Vista style template.
You should change font for the top items in Individual styles.Try that.
Q: How do I make the top nav buttons exactly the same width for each button? 
 Total menu width is 743px and I have 6 buttons I want the width of each button to be fixed at 123px. 
 I set   var menuWidth="743" but it averages out the buttons based on the text.
 
A: You should use individual item styles. For example: 
  var itemStyles = [ 
 ["itemWidth=123px"], //style 0 
]; 
  var menuItems = [ 
 ["Home","testlink.html", , , , , "0", , , ], //style 0 
 ["Product Info","", "deluxe-menu.files/icon1.gif", "deluxe-menu.files/icon1o.gif", , , "0", , , ], //style 0 
Q: Is there anyway of selecting the tab in mouse over tab menu according to what webpage you are on ? 
 
A: Deluxe Tabs doesn't support API functions which can return the
selected tab aslo.
You can set "bselectedItem" and "  var bselectedSmItem" parameters
based on your link before you call your data file.
For example, move "  var bselectedItem" and "  var bselectedSmItem" parameters
from your data file to your code.
<TD vAlign=top align=left>
/* Select Tab */
<script type="text/javascript" language="JavaScript1.2">
   var bselectedItem=;
   var bselectedSmItem=;
 </script>
 <SCRIPT src="data.js" type=text/javascript></SCRIPT>
 </TD>
You should define seltabs and selsmtabs using server side script.
You can also set it on every page before you call data.js file, for
example:
<TD vAlign=top align=left>
/* Select Tab */
<script type="text/javascript" language="JavaScript1.2">
   var bselectedItem=4;
   var bselectedSmItem=3;
 </script>
 <SCRIPT src="data.js" type=text/javascript></SCRIPT>
 </TD>