var fDesc=new Array();
fDesc[1] = "that is set in a teamplay, you can choose to be a terrorist or a counter-terrorist. Warning: this great game is very addictive! You’ll download it in a few minutes and you’ll be playing it in less!";
fDesc[3] = "background of the game is such that, you are the head of an international team of skilled explorers who are on a classified mission. In this mission you are provided with 76 challenging levels where you have to unfold the secrets of the long lost fabled continent.";
fDesc[4] = "choose from a great variety of solitaire games, from the challenging Scorpion to a relaxing game such as classic solitaire.";
fDesc[5] = "way through the game into the end. Magic Balls 3.5 combines great graphics and lighting effects to create a 3D visual effect in the balls, so your experience becomes richer.";
fDesc[6] = "awesome wildlife scenes. Challenge yourself with four distinctly addictive game modes. And you can save your progress as the game goes on.";
fDesc[7] = "wielding hand at two exciting modes: Speed and Strategy. Don't let the list of words reach the top in Speed mode. Take your time to plan each move in Strategy mode.";
fDesc[8] = "the game is to arrange the different types of candies into rows in order to crunch them away. Different candies will give you different points. Once you complete the required number of rows in time you will jump to the next level…";
fDesc[9] = "development for 10 years. The purpose of the game is to remove all the tiles from a board. The rules are simple and the game is extremely addictive The tiles must be removed by pairs.";
fDesc[10] = "Highly addictive, Ancient Tripeaks is full of fun and entertainment and it represents a convenient gate-away after a stressful working day. It features eight unique game modes to suit all types of players: from beginners to experienced!";
fDesc[11] = "basically a time management game. What set it apart from other games is its good interface, playability and unique theme. Have your pizza prepared by farm animals!";
fDesc[12] = "didn't feel in his childhood the anxious feeling having caught a fish!";
fDesc[13] = "This action game is full of fun. Water Bugs come with a surprising 599 levels of challenges. But still the size of the game is less then 10 MB. And its highly graphical, colorful, attractive and animated interface makes it an addictive game.";
fDesc[14] = "in common with it. The game takes place in the Azthec empire ages. We are in control of a giant frog shaped idol which throws coloured balls. In the screen we can see a track around the frog shaped idol.";
fDesc[15] = "Games, offers a high quality game that all family members will enjoy. This game is so addictive that is almost impossible to stop playing. Blokus World Tour is a must-have in any game collection.";
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 = '...';
}
}