var fDesc=new Array();
fDesc[1] = "of the game is to create matches of three in a row, by clicking on adjacent tiles to swap them. As you progress on the game, you’ll be releasing fishes. You can try this game for 60 minutes.";
fDesc[2] = ", he must pass through different levels. Along the way, he will encounter emenies that will try to stop him. the way Lex defends himself from these enemies is by spelling out words.";
fDesc[3] = "world with daemons, kings, queens and pixies. You become into a magic master who have to learn tricks, cast spells, and collect magic powders and stuff like that, in order to progress in your journey. You can try this game for 60 minutes or you can try it online.";
fDesc[4] = "seeker who travels around the world, searching for lost treasures. In this game, you have to locate the Lost Tomb of Egypt, by finding and picking objects from different scenes. You can try this game for 60 minutes before buying.";
fDesc[5] = "travel around the world discovering funny facts about each city you visit. Design your own layouts or customize the game with the additional modes. Listen your own music while you play Mah Jong Adventures.";
fDesc[6] = "imagine, is inspired by Daniel Defoe's classic 18th century book, which tells the story of the title character after his shipwreck and his life in a tropical island and all the things he made to stay alive.";
fDesc[7] = "ancient table, that are scattered around the world. Once you got all pieces, you will have the clue to find the most expensive gem: the \"World Diamond\".";
fDesc[8] = "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[9] = "title was intended for the children over four years old. It was developed by Beenox and published by THQ. Graphics: The car animations are fairly well done, taking care of details.";
fDesc[10] = "Arctic. In his way throughout the different levels, the bear has to fight a great variety of evil monsters with his only weapon: a snowball. In order to get to the next level, you have to kill your enemies by turning them into large snow balls that you can kick to kill others.";
fDesc[11] = "course editor. It's no different if you are an expert player or only a beginner, just go get ready to tee off and play a fun match with four animated cool characters. Go all the way through 36 holes of minigolf on designed 3-D courses.";
fDesc[12] = "Game. Just to give an idea, take into account that the game has seventy two levels to play. The whole game is designed to make you feel as you were inside a Disneyland motion picture, with the fable characters, the touching music and the fantastic adventures to live.";
fDesc[13] = "in North America, gives the player a true-to-life hunting experience with some of its exciting features. Once the hunting character is selected you can start with hunting. There are about 38 hunting and fishing adventures which allow you to hunt trophy animals, birds and fishes.";
fDesc[14] = "according to a level’s virtual environment, enabling gamers to be carried into various fantastic adventure stories taking place in beautiful virtual worlds, controlling Gumboy through adventurous levels.";
fDesc[15] = "package you will experience the complete game with “An Empire Divided” and all the expansions like Jump to Lightspeed, Rage of the Wookiees and the Trials of Obi-Wan.";
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 = '...';
}
}