var fDesc=new Array();
fDesc[1] = "unlock clues needed to escape from a secret island! You’re stranded on a secret island, and there’s only one way off! Find hundreds of hidden objects underwater and on land that will help you match cards and unlock clues needed to find your way home!";
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] = "and the instruction are clear and easy to understand. An old diary has been discovered. The problem is that most of its pages have been torn out. You must find the missing objects in the different rooms to unlock their doors and retrieve the missing diary pages.";
fDesc[5] = "in order to progress in the game. In this case, the scenarios will be represented by different rooms in the castle. You can see your current location at any time in the game map. There are some extra minigames included.";
fDesc[6] = "through 70 levels. With stunning graphics, amazing animations and 3 game modes, Rainbow Mystery is bursting with fun!";
fDesc[7] = "Vegas Heist, but it's OK. The story is very similar to the original, but this time you are hired to find a hidden fortune within 17 hours.";
fDesc[8] = "Mystery P.I., you've been hired by Grandma Rose to find her winning $488 Million lottery ticket. For achieving that, you´ll need to retrace Grandma's footsteps to collect clues by finding over 2200 hidden objects and solving puzzles.";
fDesc[9] = "puzzles, but with a darker and deeper tone. Unlike many hidden object games, Return to Ravenhearst allows you to freely roam from room to room, add items to your inventory that can be used later to unlock new areas or solve puzzles, and investigate objects of interest in a scene.";
fDesc[10] = "is a small town. By day it´s a quaint village full of sunshine and banter, by night a place haunted by hoof beats and spectral laughter.";
fDesc[11] = "father, an archaeologist, disappears, her daughter will start an amazing adventure to find her. You will have to search for unique hidden objects that you had heard of in every level.";
fDesc[12] = "items and some hints in case you get stuck. What makes this game different from others of the kind, is that in this one you are not only supposed to be finding items and picking them up from a scene, but you also have to put them in their correct spots in other scenes.";
fDesc[13] = "one of the most addicting games ever. It has colorful graphics and suspenseful music and great images. It is user friendly, and the instructions are clear and easy to understand. Madame Fate's life is in danger. It is up to you to help her.";
fDesc[14] = "yourself searching for hidden items in a beautiful island. Organize the place and solve the Mystery of Island of Hope.";
fDesc[15] = "scenario is a sea shore and the waves coming forward and backward. Each wave will bring some valuable items and junk, all together and mixed up. Your goal is to find in the mess the items the game requests to you, by graphically listing them on the bottom of your screen.";
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 = '...';
}
}