var fDesc=new Array(); fDesc[1] = "one coconut palm, and he occupies his time with various activities, like fishing, lighting a fire and cooking food, and many other things."; fDesc[2] = "screensaver will take on a trip to the bottom of the ocean. You will be able to watch many different kinds of sea creatures. Fish, octopus, crabs, manta rays and even a mermaid or two."; fDesc[4] = "underwater adventure of discovery. You will be able to see beautiful coral heads and sponges, as well as a vertical reef deep in the ocean. Or even an underwater arch made of coral, where different kinds of fish will swim by."; fDesc[5] = "touching each other, no matter the way they are arranged. It includes beautiful and colorful characters and scenery with an interesting story that will keep your kids amused."; fDesc[6] = "competition in an Underwater Kingdom. To do that, the player needs to solve different puzzles to provide the mermaid with all the things she needs for her sea garden."; fDesc[12] = ", dresses or bikinis and skirts, diverse hairstyles, lips, eyes, eyebrows, selecting colors. You can print you design and publish it online."; 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 = '...'; } }