var fDesc=new Array();
fDesc[1] = "case comes up and you are ready to get to the end of it. Your mission is to investigate who is the killer of Miss Linnete Doyle, another passenger of the cruiser. Twelve levels will lead you to the truth, gathering clues on each investigation.";
fDesc[2] = "file, it will download another 70851816 bytes using your Internet connection, upgrading the game to the latest available version. You must help a young couple to choose and decorate their first house.";
fDesc[3] = "game you play a New York-based wedding planner who must help the two different couples prepare everything for their big day.";
fDesc[4] = "hidden object game does not mean that you have played them all, however, this is one of those cases where from the very beginning you can realize that not all the necessary attention has been paid through the development process in order to achieve a truly original and unseen product.";
fDesc[5] = "the scenes very carefully, trying to find the items on the list. When you see an item, just click on it to update the list. In order to finish the level you have to find all the items on the list.";
fDesc[6] = "paradise. The Sims Castaway Stories offers you two forms to play. In the new and interesting way of directed history , you should achieve certain objectives and In the open-way game mode , you create the Sims and decide how they are going to evolve in their brand new islander home .";
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] = "collect antique artifacts for the Titanic Museum. The player needs to dive into 17 ship locations for clues that are deeply hidden but will lead you to the ultimate artifact: The Crown Jewels!";
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] = "him that some of the ghosts that Mortimer had evicted in the past, came through a portal. There are 9 anomalies scattered through time and space, and Mortimer must do something to prevent a Time Paradox.";
fDesc[11] = "Huntington's shop owners find more than 1,200 unique and cleverly hidden items for their customers and earn enough cash to open a shop of your own. This \"hidden object\" game will bend your brain and dazzle your eyes.";
fDesc[12] = "This collection is called The Treasure of The Ages. Doors opened to show the great treasure to the people in the museum. Nobody would believe that The Treasure of The Ages had been stolen!! Now we are told to get the whole treasure back.";
fDesc[13] = "This gives you an idea of the quality of the game which, on the other hand, it’s a disadvantage when you consider the large file you have to download to play it.";
fDesc[14] = ", and money, by finding hidden objects on different messy scenes. The game itself, basically consists in looking and picking items from different locations, following a list provided by the game.";
fDesc[15] = "big city success. Earn a lot of big city experience and then start to renovate a run-down theater helping shoppers in an Espresso Shop, Newsstand, Spa, and more!";
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 = '...';
}
}