Recent Questions
Q: Some menu entries may be disabled and clicking on them should produce predefined javascript alert message? 
A: To create disabled items you should set "_" symbol in the targetparameter of the menuItems. 
If the target is "_" the item is disabled. 
You can assign a font color for all disabled items using the following menu parameter: 
   var fontColorDisabled = "#AAAAAA"; 
You can write a javascript code instead of an item link: 
["item text", "javascript:alert('Hello World')", , , ,"_",] 
That's all.
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: 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>
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>