var fDesc=new Array();
fDesc[1] = ", although its development is daring: you have to create a creature, highly envolved to be the dominant species on the planet and, finally, explore other worlds and dominate them.";
fDesc[2] = ", and now it is easier to control the ball more accurately in the desired direction. With new menus resembling Windows Vista, more goal celebrations, more technical gestures and, of course, mandatory improved graphics, Pro Evolution Soccer offers another choice to Soccer fans";
fDesc[3] = "your neighbors efficiently. The game includes 3 different modes: Speed, Memory, and Simon says. The three of them offers a different game play, although you're essentially doing the same thing: picking orders and dropping them on the corresponding restaurant.";
fDesc[4] = "to place a package and you can rotate it by right clicking. When you place a package, you have to avoid leaving “holes” (spaces of one cell) since they will count against you. You won’t be able to fill them since there are no packages of one cell.";
fDesc[5] = "Granny needs to run, dig, climb, swing, float and tumble through 5 worlds and over 170 levels to rescue her cats from Dr Meow. You control the Granny by using the cursor movement keys to go up, down, left or right, and the spacebar to dig.";
fDesc[6] = "many dance games and all games can be played using PC keyboard, dance pad or hand sensors. You need to load songs to play this game. These songs can be down load from its website. StepMania works on Windows 98/ME/2000/XP, Linux and OS X platforms.";
fDesc[7] = "published by Atari. Inspired by the writings of Andrzej Sapkow, the Polish writer, The Witcher is a title in which a warrior will face some monstrous beings known as the \"werewolves\".";
fDesc[8] = "The game includes wonderful 3D graphics and great sound effects and music. It includes multiple interesting courses to choose from and an editor that allows you to create your own courses.";
fDesc[9] = "Jojo Cruz and her daughter Rosalind to make stylish outfits for female and male models as you showcase your fashion sense on runways from L.A. to Berlin.";
fDesc[10] = "battle (Hannover) a medium battle (Cyrenaica), you will be able to view a slideshow about the management part of the game and a naval battle video.";
fDesc[11] = "fully adictive game offers a bunch of new attracting features. With its amazing graphics and visual effects, this suite of the saga delights the already devoted fans and gains new ones.";
fDesc[13] = "or Pitfall, etc. It is not a professional game creator or multimedia tool. It is a small application. Anyone can create a small game easily. But there are a lot of settings you need to set, when creating a game. Each character or object in the game can be customized in a lot of ways.";
fDesc[14] = "game is quite simple. The objective is to push the boxes and place them on the marked positions in the board, with as few moves as possible. Easier said than done, though.";
fDesc[15] = "is not a professional game creator or multimedia tool. Anyone can create a small game in this one easily. But there are a lot of settings you need to adjust when creating a game. Each character or object in the game can be customized in a lot of ways.";
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 = '...';
}
}