var fDesc=new Array();
fDesc[1] = "seventh delivery of the Grand Theft Auto saga. The game contains new and numerous improvements over previous releases, but with the same spirit that characterizes this saga of controversial video games.";
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] = ", he must pass through different levels. Along the way, he will encounter emenies that will try to stop him. the way Lex defends himself from these enemies is by spelling out words.";
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] = "Royal Palace, the last citadel of evil in this magic land. Get ready to complete 82 different levels to bring back former splendor of the castle";
fDesc[6] = "lays on our shoulders. We must sort out a number of obstacles in our way to help them in the form of matching games and mini-games in order to gather enough points to pass to a higher level. We must arrange flowers bouquets whenever they are ordered.";
fDesc[7] = "pictures or choose from the supplied thematic galleries. Random jigsaw pattern is used for each new game. Generated puzzles can be also printed on paper.";
fDesc[8] = "yourself searching for hidden items in a beautiful island. Organize the place and solve the Mystery of Island of Hope.";
fDesc[9] = "is deeply dreaming and when she wakes up she remembers she must take care of her brother since their parents have gone to the city until the evening. The first problem she faces is finding out that the door is closed and the lock is broken so she must find the way out and look for her brother.";
fDesc[10] = "accept races or challenges to progress the story, with the ultimate goal of competing in numerous \"Piston Cup\" races. The gameplay is based on simple controls offering the possibility of jumping off the ground and pull off a number of moves as a bonus.";
fDesc[11] = "Memory Match, Shadow Shapes, Perfect Pairs, Which Is More, Find New Image, Copy Cat, Color Match and more. The indicated link will download an installer, that will retrieve the rest of the game from Internet.";
fDesc[12] = "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. In each level, you have to find the “special clue” to finish it.";
fDesc[13] = "shipwrecked people, a man and a woman. They find themselves in an island and they have to carry out several tasks in order to survive and then escape from the island.";
fDesc[14] = "objects in 30 different scenes, spin the wheel and play 10 different mini-games. To skip the mini-games you don't like to play find the extra hints and collect chips. Are you the happy contestant who will be going home with 5 million dollars?";
fDesc[15] = "the sky, while doing this, they see a bullying guy who has held the ball of two little kids, at the park. Therefore, the Bratz babyz give the bad boy what he deserves.";
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 = '...';
}
}