var fDesc=new Array();
fDesc[1] = "zombies, which want to destroy your vision of happy future. It's real good continuation of Fallout 1/2. New adventure in the habitual environment and modern good-looking form.";
fDesc[2] = "entrancing play modes, explosive new gems, and dazzling special effects! Brilliant colors, incredibly smooth to play, good sound effects.";
fDesc[3] = "You will have a board full of colored gems. You need to swap identical gems .Swap adjacent gems to make sets of three. If you have the option of swapping four gems that will create a power gem that, when swapping it too, will give you extra points.";
fDesc[4] = "explosions. You have to join the same kind of jewels, as you do it, they will explode and in that way you will reach points. You will find a lot of precious stone such as ruby, emerald,amber and so on.";
fDesc[5] = "the hit action-puzzler is here! Glory and adventure await in your quest to save Egypt from doom. Defeat the rebellious princes of Megiddo before they overthrow Pharaoh and plunge two lands into chaos!";
fDesc[6] = "ancient table, that are scattered around the world. Once you got all pieces, you will have the clue to find the most expensive gem: the \"World Diamond\".";
fDesc[7] = "game for people who have visual memory. It is one of the most addicting games ever. Once you start playing, you simply can't stop. It has colorful graphics and suspenseful music and sound effects. It is user friendly, and the instructions are clear and easy to understand.";
fDesc[8] = "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[9] = "control a central character (a Chameleon, this time) that has a gem in its mouth, and a long line of gems going around it.";
fDesc[10] = "program is easy to work with and to follow. You can edit your pictures to make collages and scrapbooks. It also allows you to save your projects, so you can go back to them every time you need to.";
fDesc[12] = "including some DVD, Iphone and Ipod formats. As the name says, you can also convert any video to audio, that is extract audio from a video file.";
fDesc[13] = "you manage to do that, then the game will award you with different bonuses and prizes. Gem Ball 3D has features of two types of games: it is partly an arcade game and it has also elements of a puzzle game.";
fDesc[14] = "great story which enhances the gamer experience. Graphics are beautiful and music and sound effects help a lot to create a great experience.";
fDesc[15] = "tool. It has all in its magic box what you may expect from this tool and even it provides you beyond your expectation. So let’s discuss what it has in its magic box. It’s Scan and fix capability gives you two options to scan your system’s registry.";
fDesc[16] = "Dug, but it has different game dynamics. You must solve the level puzzles in order to get the stones. This is a great puzzle game and it will be a good addition to your collection if you are willing to pay the price for it.";
fDesc[18] = "in order to create matches of at least three, but be sure you free other gems meanwhile. All the gems will advance each two shots, so you have to be fast and accurate.";
fDesc[19] = "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.";
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 = '...';
}
}