var fDesc=new Array();
fDesc[1] = "pretty easy to use. It takes just a minute to make a nice drop down menu with nice graphics and cool behavior, and without write any single line of code.";
fDesc[2] = "Tree Menu works well with Dreamweaver, Expression Web, FrontPage and Golive. And it can generate absolutely search-engine-friendly sitemaps.";
fDesc[3] = "webpages in only a few minutes and without any prior DHTML or Javascript knowledge. It features a nice and intuitive user interface with only one window with different tabs and allows you to preview the menu as you build it.";
fDesc[4] = "and professional dynamic menus requiring just a few minutes of time. It contains more than 100 templates, presenting actual design styles like Glass and Vista style.";
fDesc[5] = "professional, high-quality navigational bars and DHTML menus. Xara Menu Maker produces dynamic hierarchical menus and permits anyone create a cool and clever DHTML menu with graphical NavBars.";
fDesc[6] = "series of tools that help users to create pop-up menu, flash button, animated banner, etc.";
fDesc[7] = "websites even without any knowledge of DHTML or JavaScript development. It can generate all types of menus compatible with all common browsers including the Internet Explorer, Firefox, Opera and Safari.";
fDesc[8] = "programming or dhtml formatting is necessary; with DHTML Menu Builder you can easily create browser compatible dhtml pulldown menus in minutes";
fDesc[9] = "HTML knowledge required. You'll make great looking professional DHTML menus for your Website in no time !";
fDesc[10] = "builder requires no dhtml-Javascript experience from you, and you can easily link your web menus to your web pages in only seconds!";
fDesc[11] = "compatible with all the latest web browsers available in the market. It creates all kinds of menus such as Popup menu, Dropdown popup menu, Horizontal navigation bar menu, Tree menu, Dropdown tree menu etc.";
fDesc[12] = "predefined designs and supports easy integration with existing web sites. FrontPage/DreamWeaver/ GoLive/NOF plugins includes.";
fDesc[13] = "process with an automated wizard based interface. You can select from a set of 6 menus that are included in it or you can use your own menu with custom settings. All you have to do is enter some settings for your menu, and your menu will be generated in no time.";
fDesc[14] = "comes with nearly 500 ready-made menu templates, intuitive user interface and is compatible with all popular browsers.";
fDesc[15] = "publishing make the menu creation simple. Supports Windows Vista. Well integrate with Dreamweaver, FrontPage, Expression Web and GoLive.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}