var fDesc=new Array();
fDesc[1] = ", 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[2] = "balls with two big eyes on it. These “chuzzle” things are arranged on a board of six times six of them, mixed up in different colors. The way in which you can try to create matches and score points is by dragging the chuzzles here and there.";
fDesc[3] = "and the gift-completion meter will rise. In this game customers are important. To keep customers happy the player must offer them gifts, but if they wait they will become unhappy. The aim of the game is to reach the daily sales goal by selling gifts to customers.";
fDesc[4] = "different activities so fun is never the same. The main objective of this game is to solve each puzzle and task matching groups of identical Chuzzles or matching different forms provided, moving the Chuzzles to their correct place.";
fDesc[5] = "This can be done by scrolling vertically or horizontally rows of colored balls. If a big enough hole is generated because of ball explosions, bigger balls will appear.";
fDesc[6] = ", attention and concentration, and though it seems simple, winning it is a challenge. Enjoy Tic Tac Toe game from 3D Relax.";
fDesc[8] = "disappear. Help Captain Dan Cornflake to fight aliens and defend the Earth from their invasion!";
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 = '...';
}
}