var fDesc=new Array();
fDesc[1] = "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[2] = "game you play a New York-based wedding planner who must help the two different couples prepare everything for their big day.";
fDesc[3] = "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[4] = "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[5] = "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[6] = "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[7] = "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[8] = "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[9] = "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[10] = ", 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[11] = "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!";
fDesc[12] = "the crowd of similar games: it has zooming and scrolling scenes. As you may imagine, this option enlarges the searching area thus making the task of finding objects more entertaining.";
fDesc[13] = "female detective in the recently-formed Vigilante Unit. Your first case has to do with a husband who's suspected of trying to kill the people responsible for murdering his wife and daughter.";
fDesc[14] = "in different scenes. The game is organized into rounds and you have to progress by finding all the items listed in each of one. As you progress in the game you collect prize tickets which will allow you to buy prizes in the park prizes store.";
fDesc[15] = "find these items. This fun and challenging adventure will capture and fulfill your entertainment. If you get stuck use hints to help you find some of these stolen pieces.";
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 = '...';
}
}