var fDesc=new Array(); fDesc[1] = "reach the enlightenment. Its ease of play and relaxed atmosphere, plus its beautiful graphics make it a very enjoyable game."; fDesc[2] = "will put you in a gorgeous setting. It is a very pretty and peaceful pond surrounded with plants and trees. You can see the first ducks, rabbits and other animals starting to relax after the winter season."; fDesc[3] = "send a team of saboteurs at the world ducks' rally. This team was to commit an act of sabotage in the hunters' village."; fDesc[4] = "liberate young turtles and collect all the diamonds. To liberate them you must jump over the young turtle after finding him and defeat your enemy. Try to find extra diamonds in secret places."; fDesc[5] = "other animals like rabbits and robins are running and flying on this beautiful scene. The enchanting sounds they produce will give you a relaxing and peaceful time."; fDesc[6] = "displayed from different camera angles in true 3D. The wonderful thing about it is that it changes constantly, making a marvelous panorama."; fDesc[7] = "needs to pick carrots and other vegetables while anvils rain from the sky. The game is very nice, and kids will really like it."; fDesc[8] = "kinds of lush vegetation in many different shades of green. You are sitting on the shore of a small calm lake, surrounded by all kinds of plants."; fDesc[9] = "the world ducks' rally. This team was to commit an act of sabotage in the hunters' village."; fDesc[10] = "types of living waterfalls from various places including on mountain, forest, cliff, and many more."; fDesc[11] = "forest. The scene is really well designed, and it shows some interesting details, like the snowed pines and trees, and a beautiful view of a pine forest on a slope."; fDesc[12] = "screensaver design is beautiful, with delicate colors, detailed drawings, and a subtle animation that slowly fills the screen."; fDesc[13] = "fifty great puzzle games for all ages. What is great about these games is that they help us forget for a while the stressful working days, and refresh our minds with its challenging yet soothing gameplay."; fDesc[14] = "meadows, breathing the freshest air and enjoying all the beauty of nature. This is a place where you will not remember, nor worry about the troubles and stress of everyday life."; fDesc[15] = "this special season of the year. The setting includes detailed designs of flowers and butterflies of all colors, with an animated windmill that spins around quietly."; 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 = '...'; } }