var fDesc=new Array();
fDesc[2] = "matchmaking and text and voice chats. Features game news and downloadable demos. When you install GameSpy Arcade 2.05, the program seeks for supported installed games in your computer, in order to allow you to play them online. If it finds nothing, it will later help you to find some.";
fDesc[3] = "that needs to eat smaller fishes to grow up; likewise, we get points, bonuses, and pass on to next levels. The game becomes more and more interesting (and difficult) as we grow bigger and get to eat our old enemies.";
fDesc[4] = "You control the character with the cursor keys (to move it to the right or left) and you jump with the spacebar. You must remember that the steps are covered with ice, so they are very slippery. Be careful when you jump, without falling.";
fDesc[5] = "those games, you have to keep the ball bouncing into three walls, destroying thing as it touchs it, and getting points for it. From time to time, a destroyed item will free a bonus item, that will give you some advantage if you catch it.";
fDesc[6] = "you pass the level, otherwise you lose. What is hard about this game is that you don’t have a direct shot to each orange pegs and it’s kind of hard to calculate all the bouncing the ball will do when you shot an indirect ball.";
fDesc[7] = "they are automatically removed from the board. In order to get to the next level you will have to make a certain number of matches.";
fDesc[8] = "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[10] = "way through the game into the end. Magic Balls 3.5 combines great graphics and lighting effects to create a 3D visual effect in the balls, so your experience becomes richer.";
fDesc[11] = "your hamster fall down in a wrong way, or you can break his ball and loose time. Reach the goal before the time is up and enjoy each new level of this game.";
fDesc[12] = "The game features a charming turtle in its mission to save the bay where it used to live, from the invaders' attack. The story behind this game is really thrilling.";
fDesc[13] = "stones of the same color diagonally, horizontally or vertically. You can move the falling array of stones by moving your mouse. Once in place, with a click on the left button on your mouse you will drop the entire array.";
fDesc[14] = "them at the site Gametop.com and you can download there. In this title you will find some funny birds that you will have to shoot. In the main menu you can choose between adventure, arcade and puzzle.";
fDesc[15] = ", Hexxagon, Pong, Snake, Space Invaders, Tetris, and Tic Tac Toe. Each game has its own rules and controls, identical to the original arcade games.";
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 = '...';
}
}