Recent Questions
Q: Can a menu item that expands the submenu items when selected also work as a link?
A: Actually you cannot use links for the top items in the XP Style. 
But you can write: 
 ["<a href='index.html' class='home'>Home</a>","", "", "", "", "Return to Index page", "", "0", "", ], 
 ["<a href='http://www.domain.uk' class='home'>About Us</a>","", "", "", "", "", "", "0", "", ],
  ["|Introduction","http://www.domain.uk/introduction.htm", "", "", "", "", "", "", "", ], 
And create styles 
.home{ 
color: #FFFFFF;} 
.home:hover{ 
color: #FFBEBE;} 
 
But in that case the submenu and link open when you press "About Us" item. I think that it is not verygood behaviour. You can also try to specify target parameter 
 ["<a href='index.html' class='home'>Home</a>","", "", "", "", "Return to Index page", "", "0", "", ],
 ["<a href='http://www.domain.uk' class='home' target="_blank">About Us</a>","", "", "", "", "", "", "0", "", ], 
  ["|Introduction","http://www.domain.uk/introduction.htm", "", "", "", "", "", "", "", ],
Q: I am very interested in using your deluxe menu products for my new website design, particularly the Tree Menu. I've been looking at the javascript tree source and am a bit worried that the links used will not be recognised by Search Engine robots - do you have any information regarding implementation of your menus so that the links are fully visible to search engines ? 
A:  You can generate search engine friendly code.
 Deluxe Tree is a search engine friendly menu since v2.4.
To create a search engine friendly menu you should add additional html code within your html page:
<div id="dmlinks"> 
<a href="http://deluxe-menu.com">menu_item_text1</a> 
<a href="http://deluxe-tree.com">menu_item_text2</a> 
...etc. 
</div> 
To generate such a code use Deluxe Tuner application.
You can find this GUI in the trial package. 
Run Tuner, load your menu and click Tools/Generate SE-friendly Code (F3).
Q: I can't see my javascript vertical tree menu in FireFox. What I'm doing wrong?
A: You should set this parameter:
  var tmenuHeight = "auto";
Now you have
  var tmenuHeight = "0";
Q: How does an item on the simple html menu connect to pages?
A: You should create menu items in the Deluxe Tuner and specify link and target for each item, for example:
  var menuItems = [
 ["Upcoming Trainings","http://domain.org/pub/upcoming-trainings", "", "", "", "_self", "", "", "", "", "", ],
 ["Conferences & Workshops","upcoming-workshops.html", "", "", "", "_blank", "", "", "", "", "", ],
 ["Continuing Ed","ceu.html", "", "", "", "main", "", "", "", "", "", ],
];