Recent Questions
Q: What I would like to see is the ability to have a base site navigation menu with all the definitional entries (size, locations, icons, etc.) defined but all the menuitems be called from an Ajax file.
A: You cannot use ajax submenus for the top items.
But you can use several .js file, for example:
 params.js //file with all menu parameters (size, locations, icons, etc.)
 all code before
   var menuItems = [
 ...
 ];
 dm_init();
 data_ajax1.js //data files for ajax submenus
 data_ajax2.js
 data_ajax3.js
 ...
 main_data.js - data file with the following code:
   var menuItems = [
 ["Item 1","", "", "", "", "", "0", "0", "data_ajax1.js", "", "", ],
 ["Item 2","", "", "", "", "", "0", "0", "data_ajax2.js", "", "", ],
 ["Item 3","", "", "", "", "", "0", "0", "data_ajax3.js", "", "", ],
 ["Item 4","", "", "", "", "", "0", "0", "data_ajax4.js", "", "", ],
 ];
 dm_init();
You can also place this code into your html page directly (in the place where you want tohave a menu):
 <script type="text/javascript">
   var menuItems = [
 ["Item 1","", "", "", "", "", "0", "0", "data_ajax1.js", "", "", ],
 ["Item 2","", "", "", "", "", "0", "0", "data_ajax2.js", "", "", ],
 ["Item 3","", "", "", "", "", "0", "0", "data_ajax3.js", "", "", ],
 ["Item 4","", "", "", "", "", "0", "0", "data_ajax4.js", "", "", ],
 ];
 dm_init();
  
Q: Where in the interface is there an area to make a tab selected or not for the div tab menu? 
A:  You should see the following parameters:
Top items
  var bselectedItem=1; //--- Common
Submenus
  var bselectedSmItem=10; //--- Tab-mode
Q: I have a question regarding deluxe tab implementation.Can you guide me on how to change tab selection dynamically for the tabbed navigation.
A: Deluxe Tabs doesn't support API functions which can return the selected tab.
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>
Q: One question. I'm working on my site and I'm wondering why the background images disappear for a while after hovering over them, then reappear after a while. 
 Can you tell me how to stop this from happening?
 
A: ow you have such parameter: 
  var itemBackColor=["#FFFFFF","#4792E6"]; 
The second color is the mouseover background color.