var fDesc=new Array(); fDesc[1] = "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[2] = "300 layouts, all distinctly original, ranging from super easy to extremely challenging. Mah Jong Medley has 4 game modes to choose from."; fDesc[3] = "awesome wildlife scenes. Challenge yourself with four distinctly addictive game modes. And you can save your progress as the game goes on."; fDesc[4] = "relaxing fun! Enjoy frantic timed modes and puzzle over relaxing brain teasers. Collapse! II is one of our most addictive and popular games."; fDesc[5] = "guiding the Magic Ball with Incredible Ink. Two distinct game modes, Escape and Break All, are packed with gorgeous art and detailed level design. Its fun times two!"; fDesc[6] = "case you don't know the previous game, your goal is basically to fit a specific number of different pieces into a board with the shape of animal. You can rotate the pieces, but you have to very fast."; fDesc[7] = "wielding hand at two exciting modes: Speed and Strategy. Don't let the list of words reach the top in Speed mode. Take your time to plan each move in Strategy mode."; fDesc[8] = "Explore 3 unique gameplay modes, with various bonuses and surprises."; fDesc[9] = "will keep you entertained. Enjoy this creative game while you put fruits together, built tikis and rockets, and shoot to different targets."; fDesc[10] = "Highly addictive, Ancient Tripeaks is full of fun and entertainment and it represents a convenient gate-away after a stressful working day. It features eight unique game modes to suit all types of players: from beginners to experienced!"; fDesc[11] = "flying objects in the space. Invadazoid 1.0 has got several game modes (invasion, survival, classical and boss). Each one has got different rules and strategies."; fDesc[12] = "there’s a view of the underlying earth from where you have to grab gold and other treasures. Click the mouse button to grab stuff. You need to help the miner to get enough money to go to Las Vegas and gamble."; fDesc[13] = "graphics and a nice music, which make you believe you are at a bar playing pool. It includes many playing modes: Practice, Eight-ball and Nine-ball modes, and two challenge timed modes in which you have to put all the balls in the pockets quickly."; fDesc[14] = "Your goal is to recover stolen Egyptian treasures by matching two identical tiles, making them disappear from the board."; fDesc[15] = "ready for amazingly realistic 3-D billiards featuring nine different play modes including Cutthroat, 8 Ball, and 9 Ball. Test your skills with pre-set trick shots or play against the computer or a friend."; 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 = '...'; } }