Recent Questions
Q: When the html tab menu is initialized can you not have any selected tabs? 
 I do not want to select any tabs when the menu is initialized for some cases.
A: No, unfortunately it is not possible. Some top item should behighlighted.
But you can try to add separator in the beginning of the menu and set:
  var bselectedItem=0;
  var bseparatorWidth="0px";
  var bmenuItems = [
 ["-",],
 ["   Deluxe Menu","content1", "img/icon_ie.gif", "img/icon_ie.gif", "img/icon_ie.gif", "", "", "", "", ],
 ["   Deluxe Tree","content2", "img/icon_ie.gif", "img/icon_ie.gif", "img/icon_ie.gif", "", "", "", "", ],
 ["   Deluxe Tabs","content3", "img/icon_ie.gif", "img/icon_ie.gif", "img/icon_ie.gif", "", "", "", "", ],
 ["   Contact us","content4", "img/icon_mail.gif", "img/icon_mail.gif", "img/icon_mail.gif", "", "", "", "", ],
];
Q: What can I tell people who aren't seeing their drop-down menu? For example, I have a client who can't see his on his machine, while I can on see the menu on one of my machines but not the other.
 Please advise what makes the difference and how to correct the problem.
A: When your security settings in IE doesn't allow Javascript onpages you load you can't see a dynamic page content. So, you cannotsee your javascript menu at all.
There is no way to enable these preferences automatically, in othercase there are no reasons to create security preferences.
You can use search engine friendly code, so you'll see all yourlinks (for the main items and submenus) when your security settings in IE doesn't allow Javascript.
You can generate search engine friendly code.
 Deluxe Menu is a search engine friendly menu since v1.12.
To create a search engine friendly menu you should add additional html code within your html page:
<div id="dmlinks"> 
<a href="http://deluxe-menu.com">menu_item_text1</a> 
<a href="http://deluxe-tree.com">menu_item_text2</a> 
...etc. 
</div> 
To generate such a code use Deluxe Tuner application.
You can find this GUI in the trial package. 
Run Tuner, load your menu and click Tools/Generate SE-friendly Code (F3).
Q: My website team is still having difficulties creating the top menu navigation that I desire. Would it be possible to have a conversation with you to discuss what I desire for the top menu navigation?
 I am looking for something similar to www.blockbuster.com
 Do you also provide a paid service to create drop down menu for us? 
A: 	Yes, we provide such a service.
See more info:
http://deluxe-menu.com/custom-build-purchase.htmlQ: I need current page highlighted on javascripts tab menu.
 what I do the change on data.js file. 
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>