var fDesc=new Array();
fDesc[1] = "entrancing play modes, explosive new gems, and dazzling special effects! Brilliant colors, incredibly smooth to play, good sound effects.";
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] = "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[4] = "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[5] = "from overflowing the screen. It has a basic interface with simple graphics and sounds. The basic idea is fun but it needs some additional features.";
fDesc[6] = "Explore 3 unique gameplay modes, with various bonuses and surprises.";
fDesc[7] = "attractive story behind this puzzle game that will surely catch you. Jane and Bob, treasure hunters, have a mission to accomplish; make their way to find seven amulets.";
fDesc[8] = ", you are given the task of uncovering the secret treasures hidden there by the Incas for hundreds of years. With great graphics and a match-3 game play, Treasure Puzzle is a great option among";
fDesc[9] = "3x3 blocks with the numbers from 1 to 9, without repeating the same number neither in the 3x3 block, or the same row or column. When you begin the game, some numbers are in its place already.";
fDesc[10] = "to the left of it. To mark each found word, you need to click its first letter on the game board and then drag the displayed oval over the word to the last letter. The program contains three types of games – quest, sprint and relaxing games.";
fDesc[11] = "totally for free at GameTop.com. As any other piece of freeware it is absolutely free to install and play and what is more, you do not even have to register at all.";
fDesc[12] = "together. Pay attention to little colored fishes that will appear, because if you click over them you will automatically destroy all pears with that color. You can play it with pearls appearing from top to buttom or viceversa.";
fDesc[13] = "free to download from the developer’s website. The game has been developed to be played during those moments when you need a gateway to free your mind from all the tensions of the day.";
fDesc[14] = "to the test your abilities and fast reflexes. You have to help a charming monkey to build and arrange an stable tower of numbered cans, faster than his contester and in a limited time amount of time.";
fDesc[15] = "time since it can keep our minds active, while providing hours of entertainment. This jigsaw puzzle offers about twenty good-quality pictures for you and your family to solve.";
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 = '...';
}
}