var fDesc=new Array();
fDesc[1] = "motorcycle steering skills. Amazing realistic motion, complex obstacles, jumps and all these are in full 3D!";
fDesc[2] = "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[3] = "predecessor that makes it a much better game. With 160 levels to play in nice environments, Lost World should be a good choice for arcade gamers.";
fDesc[4] = "goal. You will have gears of different colors and sizes, each gear will give you a different amount of points. Some will indicate to you how many points you will get and some will not.";
fDesc[5] = "When you create the match, those tiles disappear from the board and are filled up with new relics and artifacts. Sometimes, the new tiles will create new matches triggering a chain reaction. If you create matches over the stone tiles, you pass the level.";
fDesc[6] = "reach the enlightenment. Its ease of play and relaxed atmosphere, plus its beautiful graphics make it a very enjoyable game.";
fDesc[7] = "minute rate on your keyboard. Now you can improve your typing speed and accuracy level by practicing texts. By default it comes with many test texts but you can type your own text and include the same in the default texts.";
fDesc[8] = ", Challenge Mode, Relax Mode and Expert Story. The Story mode will tell you a story, where you receive by mail blueprints for a machine, you build it, and the result is a robot that makes burgers. You decide to run a burger shop.";
fDesc[9] = "game you can select to learn, to practice and solve some puzzle moves and to challenge other players and opponents. In this game you can select many opponents with different abilities.";
fDesc[10] = "for clothes tailor made, and even when they’re somewhat patient to wait, you should not pressure them too much, otherwise, you won’t be able to sell anything. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[11] = "have to sort the similar colors together in order to get an atomic reaction. Atomica has two modes of game-play, a strategic turn-based mode and a fast-paced real time mode. This game will definitely take up some of your time if you play it.";
fDesc[12] = "brick-busting game to a new and more thrilling level. Playing Ricochet is very easy, you only have to control you shielded ship with your mouse and destroy all the bricks with the ion sphere.";
fDesc[13] = "shape to win an upcoming tug-of-war competition. You´ll have to serve the customers of your fitness center, and will have to conquer different goals in order to get to the next level.";
fDesc[14] = "hundreds of TV channels, listen to radio stations from around the world, enjoy CD collections with complete artist/album description.";
fDesc[15] = "put them in order in groups to disappear them and earn gold and points. This game will keep you entertained and will challenge your speed and vision.";
fDesc[16] = "running vs a computer player with a certain period of time. this game will entertain you with the different levels and will turn you a master of construction.";
fDesc[17] = "background of exquisite culinary images and sweet music. Cerebrate and use your wit's to go through all the game levels.";
fDesc[18] = "the pets, cut their hair and much more. After just one day working at Pet Corp, our character is fired and she decides to create her own pet shop. As with any new business we must buy furniture, equipment and lots of things.";
fDesc[19] = "game features colorful graphics with funny characters (Dora and her friends Boots, Backpack and Diego from the popular program Dora the Explorer), and great music and sound effects.";
fDesc[20] = "interface. Download Free Solitaire World and Play for Free!";
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 = '...';
}
}