var fDesc=new Array();
fDesc[1] = "of different hierogliphic chips.";
fDesc[2] = "suitable for all ages, through configuration of the number of games, difficulty levels and parametrization. The program can be installed in 8 different languages.";
fDesc[3] = "logic and puzzle games that will test your skills.You will spend hours of entertainment, you will never get tired of playing a single game again. You have 101 game to choose from!";
fDesc[4] = "sound and music. Graphics are highly detailed with full color with the easy to learn concept. Jewel logic provides environment for the novice maturing to an expert by unlimited levels of challenges.";
fDesc[5] = "imprisoned in a tower by solving interesting puzzles. In order to solve the puzzles, the players need to unite the lock and key icons. It looks very easy at the beginning, but as players advance through the game, they'll find a series of obstacles they should avoid or destroy to reach their goal.";
fDesc[6] = "will encounter four exciting activities covering fractions, multiplication, division, geometry, and more. They'll have to use their heads, boost their smarts, to get to be a Number Hero too.";
fDesc[7] = "finished all the levels. The game allows you to choose materials, colors, sun direction and light. Have fun watching how trains cross your bridge (or fall), and adjusting your bridge until you succeed.";
fDesc[9] = "placing balls nearby; getting lines of three balls via swapping two balls.. just look on yourself!";
fDesc[10] = "#x15Puzzle#, #MagicLines#, #MagicBalls#, #MagicBeads#, #Logic Trainer#, #Tetcolor# and #Combat Engineer#.";
fDesc[11] = "game is a classic one, and it has been played since hundred years ago, being very popular in Europe. The rules are very simple and the goal of this puzzle game is to remove all pegs until you have only one peg left.";
fDesc[12] = "memory game), Jigsaw puzzle, Scrambled (you have to slide the pieces to scramble the picture), and Leap (a funny game, in which you should jump over frogs until there is only one left).";
fDesc[13] = "must be taken at all times, which will go off in thirty minutes. The bridge can only take 2 persons at the same time and they all walk at different speeds.";
fDesc[14] = "carefully crafted levels, elegant gameplay and relaxing atmosphere, everything you need for the perfect puzzle solving experience!";
fDesc[15] = "different games such as Perplex, Puzzlic, Atomic and Clone. The new games will be added in the future.";
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 = '...';
}
}