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] = "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[3] = "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[4] = "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[5] = "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[6] = "great story which enhances the gamer experience. Graphics are beautiful and music and sound effects help a lot to create a great experience."; fDesc[7] = "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[8] = "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[9] = "Mine is basically a collapse/match 3 game with fine graphics and quite enjoyable gameplay, specially at higher levels."; fDesc[10] = "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[11] = "of the same color. This make them disappear from the board, thus gaining points and letting new random jewels fall down. The game features decent graphics and a suitable music and sound effects."; fDesc[12] = "game with four game modes and four skill levels. Enjoy improved graphics with lots of new features all your free time."; fDesc[13] = "royal game, because the jewels will reach the top of the playing field before you know it and you'll have to start over. Remember: the black glittering gemstone will come to your rescue and you will score most points with the white one."; fDesc[15] = "the board. When 4 or more gems with same color will be connected in a row (horisontal, vertical or diagonal), these gems will be deleted."; 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 = '...'; } }