var fDesc=new Array();
fDesc[1] = "abilities in a fun way. All thanks to the graphic engine of the program, allowing the kids to paint but not just like the traditional ways like a pencil and a paint bucket.";
fDesc[2] = "attacked by enemy forces. Taking the role of the only survivor, you will have to face a powerful and well-equipped army and defeat them all in different missions.";
fDesc[4] = "direction in which it moves, so you can play around with that and rotate as you want. This kind of movement is especially elegant, like a fish in water. You can choose different themes for the cursor for a different look every time.";
fDesc[5] = "and unique levels ensure hours of fun. Funky music tracks and vibrant graphics beautifully enhance the 60's retro theme.";
fDesc[6] = "times. The roulette, originated in France, is such a fun and addicting game that since its appearance, it has caught many people's attention due to its totally unpredictable nature.";
fDesc[7] = "allows multiple tracks editing and remixing. The loop browser has a wide selection of effects like bass, beats, FX, guitar, keys, vocals etc. The master selection helps in the selection of tempo and snap.";
fDesc[8] = ", since the cars are well equipped with different weapons so that you can beat your opponents as they try to exceed you at full speed.";
fDesc[9] = "colorful and easy to use. Fully functional - no disabled features. Supports hex, decimal, ascii, multiple export features. Built in search and stats.";
fDesc[14] = "outcomes and understanding.";
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 = '...';
}
}