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] = ", 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[4] = "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[5] = "to guess the most popular answers the people gave to a certain question. While this new edition doesn’t have much of a change, it still offers the good things. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[6] = "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[7] = "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[8] = "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[9] = "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[10] = "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[11] = "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[12] = "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[13] = "into what we could call “levels” or “missions”. With a wonderful interface and a warm music you enter into a welcoming atmosphere while playing this puzzle game, achieving its main goal: to entertain you.";
fDesc[14] = "hundreds of TV channels, listen to radio stations from around the world, enjoy CD collections with complete artist/album description.";
fDesc[15] = "reach the enlightenment. Its ease of play and relaxed atmosphere, plus its beautiful graphics make it a very enjoyable game.";
fDesc[16] = "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[17] = "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[18] = "challenge. Find the figures and collect prizes to fill up your pot of gold before time is up. Solve each level and increase your challenge with Lucky Clover.";
fDesc[19] = "their needs like feeding them, sleeping them, playing, and curing them. Earn money keeping babies happy and go to the store to upgrade your things, like the bed, your shoes, and other items that will help you make your job faster.";
fDesc[20] = "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.";
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 = '...';
}
}