Recent Questions
Q: How can I add a submenu to the parent javascript menu horizontal? 
A:  You should add '|' symbols before item's text.
 ["Samples","", "", "", "", "", "", "", "", "", "", ],
  ["|Sample 1","testlink.htm", "", "", "", "", "", "", "", "", "", ],
  ["|Sample 2","testlink.htm", "", "", "", "", "", "", "", "", "", ],
    ["||Sample 2","testlink.htm", "", "", "", "", "", "", "", "", "", ],
Actually you can create your menu easily in Deluxe Tuner GUI tool.
Q: I'm still having the issue with the sub-menus not being in the proper place, however I was able to fix the issue with menu now showing up in IE at all, it turns out I forgot a  tag. So do you know why the sub-menu alignment changes depending on the browser window size? Either of the links below should give an example.
 
A: See, the problem is that the script can't get css properties of the object if they are described in separate .css block (or file). 
In other words, you can't get the value of "position" attribute of the object if the object doesn't have this property within inline style(style="position:absolute"). To get the value you should move .css style into style="" attribute. 
Please, try to add your 
 css file -> inline css, for example: 
You should add style="position:absolute;"
to the 
<DIV id=navholder> 
So, you'll have: 
 <DIV id=navholder style="position:absolute;"> 
Q: I would like to buy the OEM license with the sources.
 But for redistribution I would like to use the obfuscated scripts.
 Do I get both type of menu & javascript when buying the OEM license of 499 dollar? 
A:  Yes, of course, the redistributable Developer License comes with bothsource and obfuscated files.
Moreover you're not allowed to redistribute the source version of scriptwith your application. The sources are for use inside your company only.
Q: There seems to be a "glitch" when I use Firefox. 
 I have rebuilt the page twice but I always end up with themenu floating to the left, instead of under the main menu (the second or third mouseover will correct the issue). Also, sometimes I have to mouseover twice before the submenu comes up (in I.E.). 
 I have validated...however I wondered if there could be a conflict in the javascripting (yours and mine). Any suggestions?
 
A: The reason is in your <!DOCTYPE>.
Try to specify units in "px".
  var menuWidth="780px"; 
  var menuHeight="27px"; 
  var smWidth="200px"; 
  var smHeight="200px"; 
It's necessary to specify exact value for Mozilla browsers. It helpsto position menus correctly. 
You can also try to set the following parameter:
  var dm_writeAll=1;