var fDesc=new Array();
fDesc[1] = ", although its development is daring: you have to create a creature, highly envolved to be the dominant species on the planet and, finally, explore other worlds and dominate them.";
fDesc[2] = "the galaxy by this. Is a game in which one can lengthen the line-up wherever you want whenever you begin a life of the universe is completely new and very large.";
fDesc[3] = "to this great saga. This time, the Prince of Persia, decides to go back in time, to kill a creature called Dahaka, which is like a black hole, eats everything in its way.";
fDesc[5] = "also trolls, goblins, elves and more. Every so often, wars between the races broke out. And chaos reigned..";
fDesc[6] = ", living pumpkins and witches. This is surely not another one of those boring Halloween screensavers that only show a strange looking pumpkin standing motionless somewhere. This amazing screensaver will show you many of those dreadful characters that used to frighten us in the past.";
fDesc[7] = "Ozzy starts the journey with an innocent game of catch, as Ozzy accidentally smacks into a slab of ice, cracking it and letting a mysterious creature go free. Intrigued, he follows, unknowingly setting off on the adventure of a lifetime, filled with excitement and wonder.";
fDesc[8] = "his quest to gather the mystical light crystals! Zamby is filled with hours upon hours of captivating brain training puzzles.";
fDesc[9] = "who needs to collect treasures in order to proceed through levels. To do so, the players will have to avoid (by digging or setting traps) or kill the enemies that will try to stop them.";
fDesc[10] = "files 6 ways. Replace text in multiple files. Index files to find a word on your hard drive in less than a second! Zip found files.";
fDesc[11] = "like out-of-this-world creature, the MorphVOX Galactic Voices 1.3 is just the right kind of deal, which comes as a free add-on for the MorphVOX Pro Voice Changer software.";
fDesc[12] = "list of titles which represent different missions for Nancy Drew to solve. This time Nancy Drew will be going to Hawaii to serve as a research assistant to Dr. Quigley Kim.";
fDesc[13] = "obstacles that slow down the speed of the competitor, food in the road gives energy to run faster. There are 8 different competitors: horse, cougar, rinho, pig, sheep, bear, goat, and tiger. Each creature has different running speed, swimming speed, jump speed and strength.";
fDesc[14] = "earth collecting as many things as they can and grow into a mammoth sized creature to save the world from a deadly demon with the head of a fish.";
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 = '...';
}
}