var fDesc=new Array();
fDesc[1] = "developers, including Atari, Popcap and WildTangent Studios. WildCoins are a payment system you can use to play WildGames. They work like quarters in an arcade.";
fDesc[2] = ", you´ll have to watch out for dangerous puzzle locks. The game has high resolution graphics. It can be played in four modes: Classic, Speed, Zen and Mind Bender, in Rainbow, Giant and Super Chuzzles. You´re awarded with trophies as you win.";
fDesc[3] = "and will captivate you while you are playing. The game consists in a bunch of words mixed up on the screen that you will have to find to get points.";
fDesc[4] = "that needs to eat smaller fishes to grow up; likewise, we get points, bonuses, and pass on to next levels. The game becomes more and more interesting (and difficult) as we grow bigger and get to eat our old enemies.";
fDesc[5] = "You will have a board full of colored gems. You need to swap identical gems .Swap adjacent gems to make sets of three. If you have the option of swapping four gems that will create a power gem that, when swapping it too, will give you extra points.";
fDesc[6] = "you pass the level, otherwise you lose. What is hard about this game is that you don’t have a direct shot to each orange pegs and it’s kind of hard to calculate all the bouncing the ball will do when you shot an indirect ball.";
fDesc[7] = "the three games is to collect as much money as we can, so that the money meter reaches the highest position and we move on to the next level. Each game features three levels of difficulties: easy, normal, and hard.";
fDesc[8] = "line of defense against zombies, and you need to use given plants to stop them (they really are able to). Unlike other tower defense games, the enemies advance in a straight line and you can't modify their path. You can only shoot them down with different plants.";
fDesc[9] = ", in around 20 missions and two game-play modes. With good graphics and sounds that complement the game-play, this game is very complete. But a price tag that high is bound to make your wallet think a bit about the game.";
fDesc[10] = "deeper sharks appear on the right hand side and come to us. These sharks have words written on their bodies. We can keep them away by typing these words.";
fDesc[12] = "have to sort the similar colors together in order to get an atomic reaction. Atomica has two modes of game-play, a strategic turn-based mode and a fast-paced real time mode. This game will definitely take up some of your time if you play it.";
fDesc[13] = "Bejeweled series. The play is located in the era of the Aztec culture and the player should form groups of 3 or more balls of the same color around a trail, before the balls arrive at the Skull, the point at which they disappear.";
fDesc[15] = "different games: Half Life 2 and its two expansions, the fascinating and innovative Portal and the funny multiplayer Team Fortress 2. Are you sure you can resist? The best first-person shooter for PC is at The Orange Box. An essential pack .";
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 = '...';
}
}