var fDesc=new Array();
fDesc[2] = "exciting colorful graphics that keeps players wanting more. It is a great tool for people who want to practice their English vocabulary. It is based on the American TV show with the same name. The player can choose the characters appearance, including hair color and style.";
fDesc[3] = "fabled Golden Jewel Board. Uncover hidden jewels, and then use those jewels to complete your quest. While playing with a mysterious jewel board, their daughter Natalie unknowingly pops open a secret compartment...";
fDesc[4] = "guesses. The game includes 8,000 words and phrases arranged into several categories that go from TV shows and music, to History and Literature. HangAroo is very entertaining, and a really good pastime for adults and kids as well.";
fDesc[5] = "certain items in different scenes and find them in order to progress in the game. In this case, the scenarios will be represented by different rooms in the manor. You can see your current location at any time in the game map.";
fDesc[6] = "that different to other pool games already seen, but the stuff around the game is what makes this game pretty unique.The game provides extensive help to get the most out of Cue Club. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[7] = "to save their house; otherwise they will have to sell it. Apparently, Grandpa Scruff has kept a shocking secret cover for many years that could be the key out of the problem.";
fDesc[8] = "players to \"uncover the code\", and this combines elements of adventure and puzzle with a script full of twists and surprises.";
fDesc[9] = "this category, this game is pretty different from others. The game is organized into chapters, in each chapter you’ll need to solve a case in The Vanishing Files to uncover the story.";
fDesc[10] = "game to uncover some mines within a place of squares. You uncover a square by clicking and if its a number, it shows the total number of mines in the eight squares that surround it. You mark a flag to show that you suspect a mine. After indicating the number of mines needed, you win !";
fDesc[11] = "Your goal is to fill out your game field with the shapes provided in order to solve and image that will guide you to the game’s answer. There are many levels to solve, but do not worry, you have a map with you that will show you where you are and will help you keep track of your game.";
fDesc[12] = "the asterisks. This could be a great tool but has three weak points. First, it's neither practical nor intuitive. Second, it has some bugs under Windows Vista. Third, it supports only Microsoft Internet Explorer.";
fDesc[13] = "formula upside-down with atypical gameplay, 3D graphics, 2 game modes and over 100 wonderfully drawn, mind-challenging levels! Play 2 engaging game mode, collect bonuses, keys, jokers and more.";
fDesc[14] = "identical symbols twisting horizontally or vertically two adjacent items, forming groups that will vanish, leaving the space they occupy free.";
fDesc[15] = "unscrambling the letters given. The idea is very simple; we will see a grid with several columns and rows, one of which is blank, and the objective is to form a hidden phrase by placing the right letters in this blank line.";
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 = '...';
}
}