var fDesc=new Array();
fDesc[1] = "multiplayer games over the internet and chat at the same time. You can play games with other users all over the world and join to leagues and tournaments.";
fDesc[2] = "the game board so that the numbers 1 through 9 occur exactly once in each row, column, and 3x3 box. Your goal is to fill in the empty squares following the simple rule above.";
fDesc[3] = ", adventure and role, to offer the player a universe where evil is the key to success. Are you prepared to be the new lord of evil?. In this game you must embody illustrious and armed Overlord.";
fDesc[4] = "great nonetheless. In the game, you play a new character, who apparently was on the same flight as the survivors, but he can't remember anything prior to the crash. Jack asserts that he has amnesia brought on by the shock of the crash.";
fDesc[5] = "goose, shear a sheep, milk a cow and a goat, and enjoy the hard work of a farm. This game allows you to play a simple mode or a story arcade.";
fDesc[6] = "stages which are called challenges, as we must prove ourselves as top chefs. In each challenge we must create different recipes in a limited time. To create a recipe you must follow some steps. In each step you must use different flavors that must fit the ones required by the judges.";
fDesc[7] = "game board with different monetary values on them. You have to choose one of the categories and a monetary value to play for, and answer the corresponding question.";
fDesc[8] = "explore with the help of maps and teach the children how to perform different tasks while you buy different technologies in order to help them.";
fDesc[9] = "by the famous Pat Sajak. The show is a questions&answers contest, related of course with words and letters. On the main menu you’ll see three podiums located on the TV studio. Each of the podiums represent a different game you can play.";
fDesc[10] = "to success on your game life. You start having to go to college, the game will make you study and be nice with your family. You will get points by delivering coffee to your professor, love to your mother, and entertainment and fruits to all the people in the house.";
fDesc[11] = "casual game is based on the homonym Fox television show being Jeff Foxworthy the host in both. As you may know, players are assisted by fifth grader when answering questions suitable for children in the first to the fifth grade.";
fDesc[12] = "improve spelling and learn new words, while having a great time with friends or family. Merriam Webster's Spell-Jam is a game that definitely deserves a place in your game collection.";
fDesc[13] = "Aang restore peace to the elemental kingdoms. The game features colorful cartoon-like graphics and a lame control system, which makes it the least exciting game of the Avatar: The Last Airbender sequel.";
fDesc[14] = "of the screen and place them on the free spaces in which they fit over the board. Pay attention to empty spaces with money since, that will allow you to buy more clothes and accessories.";
fDesc[15] = "Entertain with the story of ancient seasons and natural rules, power of water and nature. If you like challenge in knowledge, speed, and reflects, you will love Season Match.";
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 = '...';
}
}