Recent Questions
Q: I was wondering how do I add more then five items on the top javascript toggle menu rather then using a sub menu. 
A: 	Actually you can add as many top items as you want.
Use Deluxe Tuner to add more items or add them in your data filemanually, for example:
  var menuItems = [
 ["Item 1","whatsnew.htm", "Buttons/whatsnewup.jpg", "Buttons/whatsnewover.jpg", "", "", "", "", "", "", "", ],
 ["Item 2","test.htm", "", "", "", "", "", "", "", "", "", ],
 ["Item 3","index.htm", "Buttons/homeup.jpg", "Buttons/homeover.jpg", "", "_parent", "", "", "", "", "", ],
 ["Item 4","about.htm", "Buttons/aboutup.jpg", "Buttons/aboutover.jpg", "", "_parent", "", "", "", "", "", ],
 ["Item 5","commserv.htm", "buttons/commservup.jpg", "buttons/commservover.jpg", "", "_parent", "", "", "", "", "", ],
 ["Item 6","conference.htm", "buttons/conferenceup.jpg", "buttons/conferenceover.jpg", "", "_parent", "", "", "", "", "", ],
 ["Item 7","lodges.htm", "buttons/districtsup.jpg", "", "", "_parent", "", "", "", "", "", ],
Q: I have tried various different ways, but I cannot get a separator image 
I have specified in the Separators section of menu generator to display in.
I have verified that the image exists, but still nothing.
 
A: To add a separator you should
//--- Separators
  var separatorImage=""; //for subitems (top items in vertical menu)
  var separatorWidth="100%";
  var separatorHeight="3px";
  var separatorAlignment="right";
  var separatorVImage="separator.gif"; //for the top items (subitems items in vertical menu)
  var separatorVWidth="100%";
  var separatorVHeight="2px";
  var separatorPadding="";
You can create separators using menuItems 
(you can do it in DeluxeTuner, use "Add separator" button),
 for example:
    ["||All Images","gallery_all.html", , , , "_self", , , , ],
    ["||-"],
    ["||Pricing & Ordering Info","gallery_pricing.html", , , ,"_self", , , , ],
Try that. 
Q: That is what I need:
 a) I build a menu with an item like this: 
    ["||"Product1","http://127.0.0.1/product1.htm","","","",,"0",], 
 b) when I select that item, I need that page product1.htm loads into an iFrame. 
 Can I do this?
 
A:  You should set the Iframe name as the target value in the menuItems. 
You should also set the following parameter:
  var itemTarget = "";
Q: I created a tree menu based on your template Vista Style 7. 
 I would like to know if there are some possibilities to set the x coordinate of the submenus. I would like to have a tree menu with submenus which are not moving to the right when expanding the main menu but staying under it.
A:  You can only try to use the following parameter to change submenuposition: 
  var tlevelDX=0;