var fDesc=new Array();
fDesc[1] = "all know: \"A long, long time ago, in a galaxy far away...\" That phrase alone gives me the goose bumps. The whole premise of the game is to fight a Chicken Invasion. Humanity has been killing chicken right and left for thousands of years.";
fDesc[2] = "long, long time ago, in a galaxy far away...\" That phrase alone gives me the goose bumps. The whole premise of the game is to fight a Chicken Invasion. Humanity has been killing chicken right and left for thousands of years.";
fDesc[3] = "we all know: \"A long, long time ago, in a galaxy far away...\" That phrase alone gives me the goose bumps. The whole premise of the game is to fight a Chicken Invasion. Humanity has been killing chicken right and left for thousands of years.";
fDesc[4] = "The tracks are well done and has beautiful graphics. However, the challenge of Trials 2 is not there and might become too easy.";
fDesc[5] = "the year 1960 of an alternate history. Your plane crashed just in the middle of the Atlantic Ocean and you're the only survivor.";
fDesc[6] = ", is now available for Windows Vista. This is the first Live platform title for PC which is similar to the gamers community platform Microsoft developed for its Xbox 360 console.";
fDesc[7] = "objective is to save the Happylanders, in order to rid the world of evilness. The game includes a level editor. By using it you can design your own levels.";
fDesc[8] = "long time ago, in a galaxy far away...\" That phrase alone gives me the goose bumps. The whole premise of the game is to fight a Chicken Invasion. Humanity has been killing chicken right and left for thousands of years.";
fDesc[9] = "Po, the panda who is trying to master his Kung Fu skills. Although this is not a revolutionary game, it could prove a fun addition to your collection. The user controls are not too elaborate, the graphics are not top-of-the-line, but those pandas can be darn cute and adorable.";
fDesc[10] = "fantastic environments fighting his main enemies: lions. The real objective of the game is to collect a certain number of magical gems per level that allows the player to get to the next one.";
fDesc[11] = "action takes place at Rupture Farms, where Abe and other Mudokuns are slaves. After learning that he and his fellows are going to become the ingredient for a new dish, Abe decides to escape, but not on his own; he will try to rescue his fellow Mudokons. So the odyssey begins.";
fDesc[12] = "old classic platform games, in which you will have to jump, run, beat enemies and collect power-ups. Your mission is to guide Alex through the jungle to rescue his girlfriend Lola from humans who want to make a bag of her.";
fDesc[13] = "together. Unlike other platform games, in Best Friends there is no hurry and there are no enemies to fight. The game is really easy to control and play, and on each level the player knows exactly his goal and the path to take.";
fDesc[14] = "for love and fortune. To reach its objective, this little worm has to jump on platforms, collect coins, fruits and other objects, while surviving in a hostile environment, with the threat of evil creatures like spiders and snails.";
fDesc[15] = "different worlds, which can be played in any order. The main character in the game is a funny coin called Colin, who should bounce around the different levels and worlds retrieving the stolen coins.";
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 = '...';
}
}