var fDesc=new Array();
fDesc[1] = "is the net that is following you, if you get closer, you're trapped. Besides the net, there are many other obstacles on you";
fDesc[2] = "levels. Its distinctive features are hi-tech 3D graphics, realistic physics simulation and smooth controls. This game also supports network play.";
fDesc[4] = "puzzles. You will travel across the world searching for key items, solving puzzles and deciphering cryptic messages. As in any hidden object game, you will have to find the listed objects on a busy scene before time runs out.";
fDesc[5] = "to beat everyone in these very fun bowling matches, in which instead of pins you will be hitting your elf friends. Become as crazy as the elf in this amazing bowling game.";
fDesc[6] = "different directions so that you can get groups of three or more and destroy them before they reach their goal. The game is very easy to use, all you need to control the cannonballs is your mouse.";
fDesc[7] = "a passage that an archaeologist found under a tomb, with different doors and rooms. You must help to find the way to enter the different rooms and collect the treasures.";
fDesc[8] = "Fisherman Of Fortune. And it’s totally free! So go ahead and start fishing. The aim of the game is to catch as many fishes as you can.";
fDesc[9] = "The game has got sixty levels, each one with a different difficulty level. It is very easy to use and play. You will be able to pass the levels as you keep on matching figures of the same color in groups of three or more.";
fDesc[10] = "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[11] = ", getting power-ups to increase the rate/damage power of laser fire and changing the currently wielded weapon for more sophisticated ones. There are 10 weapons available in total.";
fDesc[12] = "different mazes. You´ll have to dig your way through the dirt, taking special care with falling rocks. If they hit you, you lose a life. You control the character with the cursor movement keys. But you can customize the controls as you wish, or use a joystick.";
fDesc[13] = "recipes. The game includes 64 unique levels with colorful backgrounds, smooth animations, incredible music and great sound effects.";
fDesc[14] = "free all elves by joining two nodes through the jailed elves with figures of the same colour. We pass an stage when all the elves are free. We can see the point of the story in which we are thanks to the story map.";
fDesc[15] = "arcade game doesn’t demand attention concentration or big intellectual exertion. Herewith you can choose the military vehicle, the scene of action and others. You will meet a lot of surprises and interesting things.";
fDesc[16] = "the people of Crustville. The game offers 62 levels of skateboarding and fun, and a number of bonus rounds. This arcade features colorful detailed graphics, animated backgrounds, great sound effects, and good but repetitive music.";
fDesc[17] = "Entertain with the story of ancient seasons and natural rules, power of water and nature. If you like challenge in knowledge, speed, and reflects, you will love Season Match.";
fDesc[18] = "the island. The game features nice but simple graphics, and catchy pirate movie-style music, that make it very enjoyable and addictive.";
fDesc[19] = "your dreams. When I saw it the first time I thought who would possibly like to play a game about creating his own baby? I'm a mother so let's see how this game can surprise me... or not.";
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 = '...';
}
}