Recent Questions
Q: I have one more question. I built the menu using Deluxe Tuner.
 I cannot find where to change the mouse over color from blue to something more appropriate in my drop down menu templates. Can you tell me where to do this? 
A:  You should change the second color in the following parameter:
  var itemBackColor=["#FCEEB0","#65BDDC"];
Q: This is great on last quesion how can I make the items on the top menu with java different colors? I looked at this example and cannot figure it out 
http://deluxe-menu.com/data-templates/multiple-styles-1-template-sample.html A:  You should create Individual Item Styles and assign them to your topitems:
  var itemStyles = [
 ["itemBackColor=#CE9DE1,#B978D1",],
 ["itemBackColor=#84DA7A,#48D641",],
 ["itemBackColor=#5EA6E1,#507ECB",],
 ["itemBackColor=#54CDCA,#32ABA8"],
];
 ["Home","", , , , , , , , ],
 ["Product Info","", , , , , "0", , , ],
 ["Menu Samples","", , , , , "1", , , ],
 ["Purchase","", , , , "_blank", "2", , , ],
 ["Contacts","", , , , , "3", , , ],
Q: I found the problem with de Deluxe Menus: 
 When the menu is inside the <DIV> </DIV> tags, the menu is shown, but does not scroll. 
A:  See, you use absolute position for this <div> 
<div STYLE="position:absolute;top:151px; left:0px"> 
But you can use absolute position for the menu. Your menu will scrollin this case. 
For example, you should set: 
  var absolutePos=1; 
  var posX="0"; 
  var posY="151px"; 
And install your menu 
<div> 
<script type="text/javascript" src="data.js"></script> 
</div> 
Or, write: 
<noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript> 
<script type="text/javascript">  var dmWorkPath = "/";</script> 
<script type="text/javascript" src="dmenu.js"></script> 
<script type="text/javascript" src="data.js"></script>
Q: I am trying to setup a popup tab menu like the one that you have on top part of your web pages (containing items; "Home", "Product Info", "Sample"...).
 Right now I am using <div id=""> tag to load everything and break the content into each tab, but it is taking a long time to load everything first then break them down into tabs. So I thought maybe having each tab's content in each page, and have a link to each page would be more efficient. But when I put a link for each tab, for example "link:www.google.com" I get an javascript error saying "tabs[...].id is null or not an object". When I test this straight from Deluxe Tuner, I get the same message.
 Can you tell me what I am doing wrong here? Or is there any better way to solve my problem? Thanks in advance. 
A:  Check that you have style=" visibility: hidden;" for your DIVs
 <div id="content1" style=" visibility: hidden; height: 400px;" class="tabPage">
> But when I put a link for each tab, for example
> "link:www.google.com" I get an javascript error saying "tabs[...].id is
You should write:
link:http://www.google.com