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[2] = "the game. You must change the creatures position on the board in order to form chains of three or more identical creatures. When you succeed in it, the chain will disappear, and the empty space it leaves become occupied for new creatures.";
fDesc[3] = "choosing your desired image and name. Then, you can choose to play some of the five games featured: Ride The Tide, Hold´Em Poker, 21 Blackjack, Video Poker or Slots.";
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] = "all the tension and the entertainment of the film. First-person action sequences blends with third-person components, in your trip through the Skull Island (almost all of the game action take place there) you are both, Jack Driscoll and King Kong.";
fDesc[6] = "island and got employed at a burgers and snacks beach stand. You will have to help her work at the stand, making burger sandwiches, fries and milk shakes. It has three difficulty levels, tutorials and html help included. It runs on Windows 98/ME/2000/XP/Vista.";
fDesc[7] = "Jewel Island you will find a great game and entertainment. Match groups of 3 or more identical jewels to collect them. This game has different bonuses like probability stars and power up stars, among others. This game is a time challenge, be fast and finish your task before time is up.";
fDesc[8] = "Teach them survival skill as building, fishing, exploration, research and healing other people. Guide them and build your village solving 16 puzzle of different difficulty levels.";
fDesc[9] = "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[10] = "yourself searching for hidden items in a beautiful island. Organize the place and solve the Mystery of Island of Hope.";
fDesc[11] = "team in charge of exploring deep into the islands where few have been before. As in any hidden object game, your goal is to find all the objects on a given list before the time runs out.";
fDesc[12] = "clear waters, blue skies and lots of sun will surround you. Then you will see two islands. The inhabitants of both are really into fighting against each other in a battle to destroy the other's palm trees.";
fDesc[13] = "harvest into a fortune! Serve your drinks to the thirsty inhabitants of Big Island in levels of fast-paced, sun-drenched fun. Then, use the earnings to purchase upgrades to make your smoothie stand the best!";
fDesc[14] = "year at Beach Burger, Patty discovers Burger Chief, a suspicious new restaurant run by an ambitious guy named Edie Cole Iverson and her sidekick Lars. This new competitor is dragging all Patty’s customers away so she needs to do something.";
fDesc[15] = "non-linear game with a first person perspective; it features a series of missions including pizza delivery, jet ski racing, and putting \"Brickster\" back in jail.";
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 = '...';
}
}