var fDesc=new Array();
fDesc[1] = "of satellite photographs. There are three versions, the free one for personal users, Google Earth (Enterprise) and Google Earth Pro. Many interesting features: Flight simulator, Sky and Mars, Street Views and 3D Buildings and the fantastic Google Ocean.";
fDesc[2] = "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] = "program is uninstalled, this is not deleted completely from your hard disk. There is where Uninstall Tool can help you to literally uninstall and delete all traces of the program you want to get rid of.";
fDesc[4] = "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[5] = "game you play a New York-based wedding planner who must help the two different couples prepare everything for their big day.";
fDesc[6] = "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[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] = "ancient table, that are scattered around the world. Once you got all pieces, you will have the clue to find the most expensive gem: the \"World Diamond\".";
fDesc[11] = "find hidden things and take a golden rush collecting as much gold as you can for limited time. Be fast and don't let time beat you.";
fDesc[12] = "Utilities XP doesn't add anything new to your system, it actually works as a link to your system utilities and DOS commands hidden behind system folders.";
fDesc[13] = ", 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[14] = "houses. You´ll need to impress the judge and win so that your house appears in Superstar Homes magazine. The game has two play modes: Career and Sunnyville Tour. Players cannot access Sunnyville Tour until they complete the game in Career Mode.";
fDesc[15] = "directly from the developer's website. There is a trial version we can evaluate free for sixty minutes. In this game, Alabama Smith, who is an archeological student in America, meets Dean Staples who asks him to go to Naples to investigate a mysterious artifact.";
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 = '...';
}
}