var fDesc=new Array();
fDesc[2] = "color represents a god that will grant you with special power bonus each time you do 3 consecutive matches of it´s color. The game comes with four different modes and 4 different difficulty levels.";
fDesc[3] = ", 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[4] = "of the game is to create matches of three in a row, by clicking on adjacent tiles to swap them. As you progress on the game, you’ll be releasing fishes. You can try this game for 60 minutes.";
fDesc[5] = "will get. Each letter will have a number on it that will indicate the number of points you will get by getting that word. This game is very funny and entertaining.";
fDesc[6] = "choose from a great variety of solitaire games, from the challenging Scorpion to a relaxing game such as classic solitaire.";
fDesc[7] = "awesome wildlife scenes. Challenge yourself with four distinctly addictive game modes. And you can save your progress as the game goes on.";
fDesc[9] = "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[10] = "fan, but a maniac!! Shape Shifter begins with two different modes of play: Beat the Clock and Speedster. Beat the clock is the classic mode that will hook you up for hours and hours, always challenging you";
fDesc[11] = "that is both addictive and fun. Control Squirt, your water shooting super fish, to keep those pesky wooden balls out of your serene pond. Amazing backgrounds and special effects makes Splash a game you won?t soon forget.";
fDesc[12] = "the game board so that the numbers 1 through 9 occur exactly once in each row, column, and 3x3 box. Your goal is to fill in the empty squares following the simple rule above.";
fDesc[13] = "playing slot machines but without risking your money. With Super 5-Line Slots, you will have four different slot machines in your computer with different themes, to play at any moment and feel as if you were in a real casino.";
fDesc[14] = "choice suitable for all ages what makes it ideal for the whole family. Ultimate Dominoes presents five classic domino game variations, from easy to hard, thought to suit beginners and experienced players as well, so you can set the options to suit your skill level.";
fDesc[15] = "games. With a similar exciting action such as that one experienced while playing Hop and Dodge, Varmintz has come into existence to deliver fun and entertainment all throughout its 50 crazy levels!";
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 = '...';
}
}