Recent Questions
Q: I have built out a vertical menu that fits within a fixed size box. The items of the menus are all fixed size images. However when increasing the font size in the browser under View -> Text Size the spacing between the images increases and the html java menu no longer fits within the fixed space. I did have CSS padding-top in the html java menu that I took out but it still does not fit in the space. I took out but it still does not fit in the space.
 Have you run into this before or do you know of a fix for this? 
A:  You've installed the menu in DIV with absolute position (boxNav). Thatis why you have such behaviour.
Try to use relative position for this DIV.
Q: One question. I'm working on my site and I'm wondering why the background images disappear for a while after hovering over them, then reappear after a while. 
 Can you tell me how to stop this from happening?
 
A: ow you have such parameter: 
  var itemBackColor=["#FFFFFF","#4792E6"]; 
The second color is the mouseover background color. 
Q: Can I add the value of the parameter to the link where I want my application to go when I active a submenu in the menu script? 
A:  Actually you can add php code inside menu links.
If you define your parameter in .js file you should write yourlinks in the following way, for example:
<?
....
$key = 123456;
....
?>
["Home","www.domain.com/home.php?key=<? echo $key ?>", "", "", "", "", "", "", "", ],
If you define your key parameter in the php file you should move your
menuItems into your php page directly:
<?
....
$key = 123456;
....
?>
 <script type="text/javascript">
   var tmenuItems = [
 ['Deluxe Menu','http://deluxe-menu.com','icon.gif',,,,,],
 ['Deluxe Tree','http://deluxe-tree.com','icon.gif',,'New!',,,],
 ['Deluxe Tabs','http://deluxe-tabs.com','icon.gif',,'New!',,,],
 ["Home","www.domain.com/home.php?key=<? echo $key ?>", "", "", "", "", "", "", "", ],
 ];
 dm_init();
</script>
Q: How do I get the sub-menus to open in the 2nd frame of a 3 vertical frameset.
 The menu is in the first frame. I want the sub-menus to open in the 2nd frame. I don't see how to set that parameter.
 
A:  You should check your dm_initFrame() function. 
dm_initFrame(framesetID, mainFrameInd, subFrameInd, orientation); 
framesetID - id attribute of the frameset; 
mainFrameInd - index of the main frame (where the top-menu is placed), >=0;
subFrameInd - index of the subframe (where the submenus will be shown), >=0; 
orientation - frame orientaion: 0 - horizontal, 1 - vertical. 
You should write it, for example 
dm_initFrame("frmSet", 0, 1, 0);