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] = "you have to throw balls with a given color to groups of two or more balls with the same color, making them disappear before they reach a hole located near the center of the screen.";
fDesc[4] = "Explore 3 unique gameplay modes, with various bonuses and surprises.";
fDesc[5] = "Face a challenge of serving the clients who are constantly arriving. Serve with beer the clients of the bar as fast as possible to avoid a queue. Each client has a drink of his or her own color. It will turn out badly if you serve a wrong drink. As the queue gets longer, the clients become angry so that they can even punish you. Get scores for serving the clients. You can also get different bonuses that will help you to perform this challenging task. Join your counterparts from all over the world and beat your best score! If your score is among the Top 10, you can upload it to our Web site and thousands of other players all over the world will be able to see your highscore! Are you up for the challenge? Download Barman's Life and Play for Free!";
fDesc[6] = "ideal for people who during a ten-minute break want to relax playing an entertaining game. With simple and nice graphics plus a relaxing gameplay, this collection is really worth trying, and most importantly, it is absolutely free.";
fDesc[7] = "will guarantee fun for your free hours. In this collection you will find Spider, Free Cell, Tri Peaks, Montecarlo, Forty Thieves and more, totally free of charge.";
fDesc[8] = "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[9] = "of the same color in order to clear the board. The game features two modes: the Collector mode and the Quest mode. In the Collector mode, you only have to match a certain amount of crystals to win, whereas in the Quest mode, you must collect three special keys in order to unlock the door.";
fDesc[10] = ", kids will explore fascinating science topics like astronomy, mechanics, ecology, genetics, and more! Available for Windows and Mac OS based systems and designed for kids of ages 8 and up.";
fDesc[11] = "train wagon which is progressing to a tunnel. The other one is thrown away by you from an arc-and-arrow sort of thing. This particular shooting thing can rotate 360 degrees on its vertical axis so you can aim the pieces you want to hit.";
fDesc[12] = "another, thus causing a bright explosion and eliminating them from the board. The objective of the game is to explode a certain number of spheres in order to get to the next level.";
fDesc[13] = "goal of the game is to form lines of the same color without filling the whole grid. Bumper Deluxe is a game that puzzle fans will surely enjoy.";
fDesc[14] = "Relaxed game-playing modes are present, as well as those that will require all your skills in quickly moving the mouse and shooting your clicks at the right spot. This game will give you possibility to exercise both your brainpower and reaction speed. The main goal of the game is very simple - to remove colored squares from the board. They can be taken out only in blocks of the same color, these blocks are selected when the mouse moves over. Have fun! The two week's trial period is free.";
fDesc[15] = "falls from the top of the screen. Your goal is to put together at one verteical, horizontal or diagonal line.";
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 = '...';
}
}