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] = "pages into single executable files, and ultimately into working stand-alone Windows applications, which literally resemble a normal web browser.";
fDesc[3] = "Tree Menu works well with Dreamweaver, Expression Web, FrontPage and Golive. And it can generate absolutely search-engine-friendly sitemaps.";
fDesc[4] = "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[5] = "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[6] = "series of tools that help users to create pop-up menu, flash button, animated banner, etc.";
fDesc[7] = "developed in Visual Basic and you need a Visual Basic interpreter installed in your computer. You can preview the menu in your default browser by clicking a button in the tab bar.";
fDesc[8] = "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[9] = "builder requires no dhtml-Javascript experience from you, and you can easily link your web menus to your web pages in only seconds!";
fDesc[10] = "predefined designs and supports easy integration with existing web sites. FrontPage/DreamWeaver/ GoLive/NOF plugins includes.";
fDesc[11] = "menus that allows users to create an accordion style menu to show hidden content on their websites and blogs which is mouse click or hover activated.";
fDesc[12] = "Easy-to-setup, search engine friendly, cross-frame. Create an effective web site navigation with Deluxe Tuner easily.";
fDesc[13] = "Easy-to-setup, search engine friendly, cross-frame, cool styles, supports css, floating, drag-n-drop, separators and more...";
fDesc[14] = "publishing make the menu creation simple. Supports Windows Vista. Well integrate with Dreamweaver, FrontPage, Expression Web and GoLive.";
fDesc[15] = "JavaScript menus creation. Inside, you will find everything you need to create Your javascript menus.";
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 = '...';
}
}