Recent Questions
Q: The problem that I am still experiencing (Im sure I have missed something obvious!) - is that all the pages open when you click on the relevant links but they always open with the "About Us" tab showing and then as soon as you click on a different tab you see it highlight for a second and then it just reverts back to the About Us tab even though the page has changed. As the site opens I obviously want the first tab to be highlighted as opposed to the 2nd one and the each page highlights and holds as you go through the menu.
 
A:  See, you set 
  var bselectedItem=2; 
That is why "About us" tab is selected. 
You should change the selected tab depending on the page you are now. 
This Tabs menu can save pressed item automatically within1 page only. If you open another page, the menu can't remember presseditem. You should do that manually using Javascript and menu parameters(  var bselectedItem) or using any server-side script (php, asp, etc.) 
Deluxe Tabs doesn't support API functions which can return theselected tab. 
If your site is written on PHP you can set "bselectedItem" parameter based on your link beforeyou call tabs-kasper.js file. 
For example, move "bselectedItem" parameter from tabs-kasper.js file to yourcode. 
<TD vAlign=top align=left> 
/* Select Tab */ 
<script type="text/javascript" language="JavaScript1.2"> 
   var bselectedItem=<?php echo $seltabs; ?>; 
 </script> 
 <SCRIPT src="tabs-kasper.js" type=text/javascript></SCRIPT> 
 </TD> 
You should define seltabs using server side script. 
 
You can also set on every page before you call tabs-kasper.js file(for example, for solution tab). 
<TD vAlign=top align=left> 
/* Select Tab */ 
<script type="text/javascript" language="JavaScript1.2"> 
   var bselectedItem=4; 
 </script> 
 <SCRIPT src="tabs-kasper.js" type=text/javascript></SCRIPT> 
 </TD> 
 Try that.
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: Where do I add my "blahblah.htm" page links in js menu? 
Copy of menu data below. I assume it is between the first pair " " but not sure about all the , , , , , "0" etc following.
 ["Home","", , , , , "0", , ], 
     ["Contact","blahblah.htm", , , , , "0", , ], 
          ["|Hosts","", , , , , , , ],
A: You're right, the following syntax is correct: 
["Contact","blahblah.htm", , , , , "0"] 
Here is the format for a menu item: 
["text", "link", "icon1", "icon2", "tip", "target", "styleIndex"] 
Please, try to use Deluxe Tuner application to configure your menu: 
http://deluxe-menu.com/deluxe-tuner-info.html
Q: I already have your product.  I need to know if I can call js functions using the .js file in java menu sample.
 
A:  You can use your own javascript functions in the menu items. 
You should paste "javascript:some_function()" into item's link field, for example: 
  var menuItems = [ 
["text", "javascript:your_function(...)", ...] 
]; 
  var menuItems = [ 
["item text", "javascript:alert('Hello World')", , , , ,] 
];