var fDesc=new Array();
fDesc[1] = "showed into the Windows Taskbar. Just place your mouse over a button, and most of times (not always) you will get a thumbnail of the application. Cool!";
fDesc[2] = "lays on our shoulders. We must sort out a number of obstacles in our way to help them in the form of matching games and mini-games in order to gather enough points to pass to a higher level. We must arrange flowers bouquets whenever they are ordered.";
fDesc[3] = "in the upper section, reflect desktop icons, hide/unhide all desktop icons, avoid rippling desktop icons, change the effect horizontal or undulated, change wave direction up or down, use a region for the effect, change frequency, height, amplitude, perspective, speed, etc.";
fDesc[4] = "plug-in. The standalone application works independently from other applications and has the complete functionality offered by AKVIS Magnifier. On the other hand, the plug-ins allow certain photo editors to make use of the photo enhancement capabilities of the program.";
fDesc[6] = "guitar solos or use it as accompanying music. This program provides a comprehensive user interface that makes it possible to work with several patterns such as solo, harmony, bass and chord, bass and pick, or chords. The high quality and genuine sound effects look as if we were playing a real guitar.";
fDesc[8] = "the brightness and darkness and sticking out images that need some particular visualization. Each color has its own sliding bar. Presets can be edited and saved.";
fDesc[9] = "game with four game modes and four skill levels. Enjoy improved graphics with lots of new features all your free time.";
fDesc[10] = "sliding-tile puzzles. There are more than thirty pictures to form! Puzzlement has a freeware license, and is a fantastic game that puzzle fans cannot miss.";
fDesc[11] = "Kingdoms. CaoCao is surroundded by enemies. Your mission is to bring him to eacape.";
fDesc[12] = ", .PNG, .BMP and more. And guess what: no HTML or Flash knowledge is required!";
fDesc[14] = "to original order of randomly shuffled numbered pieces in the least moves possiblen by sliding pieces into the empty spot.";
fDesc[15] = "starts moving. It plays like a sliding tile puzzle but the tiles can move in 3D and there is no hole!";
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 = '...';
}
}