var fDesc=new Array();
fDesc[2] = "color represents a god that will grant you with special power bonus each time you do 3 consecutive matches of it´s color. The game comes with four different modes and 4 different difficulty levels.";
fDesc[3] = ", 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[4] = "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[5] = "gain points. You will have to make a word from more than three or three letters. You can make a word by selecting letters horizontally, vertically or diagonally even - but the rule is not to leave a letter (you cannot skip a letter).";
fDesc[6] = "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[7] = "4 unique tanks of action-puzzle adventure!";
fDesc[8] = "ancient manuscript proclaims: “Align the relics you can see, across or down in groups of three. Turn all squares to solid gold, the path to riches will soon unfold”, and that’s pretty much what you have to do in the game.";
fDesc[9] = "will get. Each letter will have a number on it that will indicate the number of points you will get by getting that word. This game is very funny and entertaining.";
fDesc[10] = "choose from a great variety of solitaire games, from the challenging Scorpion to a relaxing game such as classic solitaire.";
fDesc[11] = "awesome wildlife scenes. Challenge yourself with four distinctly addictive game modes. And you can save your progress as the game goes on.";
fDesc[13] = "that is both addictive and fun. Control Squirt, your water shooting super fish, to keep those pesky wooden balls out of your serene pond. Amazing backgrounds and special effects makes Splash a game you won?t soon forget.";
fDesc[14] = "the game board so that the numbers 1 through 9 occur exactly once in each row, column, and 3x3 box. Your goal is to fill in the empty squares following the simple rule above.";
fDesc[15] = "playing slot machines but without risking your money. With Super 5-Line Slots, you will have four different slot machines in your computer with different themes, to play at any moment and feel as if you were in a real casino.";
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 = '...';
}
}