Recent Questions
Q: My problem is that the easy dropdown menu, as opposed to being in a fixed position 
 as stated in the .js file floats up and down with the page..How do I fix this..
 
A: You should set the following parameter to disable the floating feature:
  var floatable=0;Q: I have another question.. after I successfully click and load the data in to my window using the mouseover tab, the tab defaults back to the original default tab.
 Because I have to reload my page after the tab has been selected the tab chosen is lost. What do you recommend for "remembering" the tab so that when the page reloads the correct tab is highlighted. I know that I need to set the   var bselectedItem but if you have a "nifty" way for me to do that I am all ears. 
A: 	Deluxe Tabs doesn't support API functions which can return theselected tab aslo.
You can set "bselectedItem" and "  var bselectedSmItem" parametersbased on your link before you call your data file.
For example, move "  var bselectedItem" and "  var bselectedSmItem" parametersfrom your data file to your code.
<TD vAlign=top align=left>
/* Select Tab */
<script type="text/javascript" language="JavaScript1.2">
   var bselectedItem=<?php echo $seltabs; ?>;
   var bselectedSmItem=<?php echo $selsmtabs; ?>;
 </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, forexample:
<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> 
Q: Mouseover "QUICK LINKS" at the top. The bottom java menu navigation item is falling behind the mainnav table. 
 It works fine in FireFox. Any suggestions? 
A:  Try to add a high z-index for the DIV with top menu, for example:
<DIV id=containerHeaderNav style="POSITION: absolute; z-index:50;">
Q: How do I turn off the transitional effects for the html menus (is there a flag)?
 
A: To turn off transitional effects you should set the following parameters:
  var transition=-1;
  var transOptions="";
  var transDuration=0;
  var transDuration2=0;