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] = "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[3] = "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[4] = "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[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] = "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[7] = "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[8] = "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.";
fDesc[9] = "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[10] = "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[12] = "variety of different arrangements to play, organized into what is called “levels”. With a wonderful underwater look interface and a warm music you enter into a welcoming atmosphere while playing this game, achieving its main goal: entertaining you.";
fDesc[13] = "great story which enhances the gamer experience. Graphics are beautiful and music and sound effects help a lot to create a great experience.";
fDesc[14] = "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[16] = "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[17] = "Sell gems and jewelry to smiling customers, but watch out--keep them waiting too long and they'll start to grumble. Special tokens allow you to upgrade your shop with more jewelry and customer treats.";
fDesc[18] = "your brain to work. Solve over 225 unique puzzles on your way to gold, gems and treasure hunting glory!";
fDesc[19] = "Mine is basically a collapse/match 3 game with fine graphics and quite enjoyable gameplay, specially at higher levels.";
fDesc[20] = "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.";
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 = '...';
}
}