var fDesc=new Array();
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] = "4000 years ago. Match magic gold tiles as you travel through 11 dynasties and 175 levels. Unlock centuries of wisdom to collect the Lost Dynasty Treasures!";
fDesc[4] = "4 unique tanks of action-puzzle adventure!";
fDesc[5] = "reveal beautiful photographs. You can also download more images or add your own. You will be given puzzle pieces on a loading dock and you must click to use them into the car one at a time without leaving any gaps.";
fDesc[6] = "game for people who have visual memory. It is one of the most addicting games ever. Once you start playing, you simply can't stop. It has colorful graphics and suspenseful music and sound effects. It is user friendly, and the instructions are clear and easy to understand.";
fDesc[7] = "power and raise Atlantis, the submerged continent. This game is a great challenge of speed and logic. Graphics and moves of this game are well done and the game is very entertaining.";
fDesc[8] = "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[9] = "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[10] = "addictive and easy to play, Puzzle Inlay offers over 60 picture puzzles to inlay with more than 18 varieties of gems. The purpose of the game is easy yet challenging.";
fDesc[11] = "You will spend a lot of time playing it because it is an easy and mind free game. The purpose of Chainz 2: Relinked is to rotate links to create matches of three or more or make use of the four-way link to make matches around corners and finally clear the board.";
fDesc[12] = "and connect the left side of the playfield to the right side in order to connect flames to rockets and make them explode and disappear from the board, thus adding new ones.";
fDesc[13] = "is only one basic and simple rule and is to place one card next to the other with a value of one less or one greater, neverminding the suit. It's a game very easy to learn, you'll be playing cards in no time, but you will find yourself trapped for hours mastering the game.";
fDesc[14] = "same color, vertically or horizontally, to make them disappear from the board. In order to get to the next level you will have to make a certain number of matches";
fDesc[15] = "different colors with numbers on them. You will also have a card with numbers and colors. Every time you see that the number is both in the line and on your card you will have to click on it so that it disappears and you get points.";
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 = '...';
}
}