var fDesc=new Array();
fDesc[1] = "your character has. This includes the glaive, a triple edged metal boomerang that can shred your opponents to pieces. The game is fun and entertaining, recommendable for action gamers.";
fDesc[2] = "the dark underworld of Hades on a quest of good versus evil, during which they will encounter some of the legendary villains of Greek mythology.";
fDesc[3] = "is the creator of the original script of the video game.The argument of Jericho takes you to a city in the Middle East, Al-Khali, erected on the ruins of other ancient cities.";
fDesc[4] = "first-person game, but, unlike other games in the genre, you don't even see your arms when you are not fighting. You see everything Riddick sees, but you only see your hands/arms/legs when you use them to attack an enemy or activate something.";
fDesc[5] = "races of the world, the old conflicts between the different beings who inhabits the planet it began to emerge.The dwarves, the Shaikans, the dark forces and the humans ended with their alliances and went from love to hate over the years.";
fDesc[6] = "you will start relaxing with the soft light provided by lanterns hanging from the branches of the trees. Add some wierd sounds and noises to the scene, and you will be imagining your childhood fears.";
fDesc[7] = "Explore a secluded region of Ashan populated with fearless orcs, savage goblins, dreadful undead, elusive trolls, massive dragons and many other creatures that defy nature's creation in both size and cunning.";
fDesc[8] = "private detective. The story tells an adventure of Edward Carnby in Central Park . When you start the game, Carnby can not remember anything , and will have to go collect data from his memory in an apocalyptic night, starting in a hotel and finishing in the center of Central Park.";
fDesc[9] = "all dark crystals containing the power of orks. Gnomzy is an entertaining and fairy-tale game.";
fDesc[10] = "Entertainment. This expansion pack includes a new campaign for the game which consists of three individual chapters that continue the story of the original StarCraft, new units, upgrades and types of terrain.";
fDesc[11] = "mystery and action which takes place in a U.S. High School. Leafmore High School was the typical American High school, with its troubled adolescents, the metal lockers, football team and cheerleaders. But for a while, things have changed.";
fDesc[12] = "your PC. I´ve provided a download link and a 1 byte file size to please the interface, but you don´t have to download anything. Just entering in http://us1.darkorbit.c om you´re ready to begin playing. All you will have to do is obtain a user name and password.";
fDesc[13] = "universe is dying. In the galaxy appears a big black clod called the Mirk. You will become a member of the Guardians, a race that once was human but now is trying to survive.";
fDesc[14] = "dark magic and you must help them to escape from dark wizard Garouba. This game is very easy to control and play, all you need is your mouse. With this game you will get entertainment, and a speed and mind challenge.";
fDesc[15] = "beautiful but at the same time, it has a very eerie look. You will see the castle standing proudly in the middle of a forest, bathed by the moonlight.";
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 = '...';
}
}