var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = "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[4] = "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[5] = "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[6] = "and connect the left side of the playfield to the right side in order to connect flames to rockets and make them explode and disappear from the board, thus adding new ones.";
fDesc[7] = "characters and excellent detailed 3D environments. The game comes with a step-by-step tutorial for first time players.";
fDesc[8] = "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[9] = "car is offroad type, so you can imagine big trucks, with high power engines and big tires. The circuits in which the races take place are full of curves and hills so it keeps very interesting all the time.";
fDesc[10] = "features more than 150 3D levels and 3 difficulty settings, which include original maze-like scenarios full of adventure and action. The graphics are awesome and the characters are very funny and colorful.";
fDesc[11] = "stabs and cords. Each level will have more and more evil creatures. While you run in the cemetery, pick up the weapons to fight those creatures and also pick up the hearts that will restore your vital energy or will give you extra lifes.";
fDesc[12] = ", and we must guide them to the correctly colored houses. In addition to this we must avoid Evil Zoogs, as they will trap iggles by touching them. We can use the boost ability to move faster, but be careful while using it, as iggles will get tired easily.";
fDesc[13] = "ambiented on modern war and with several vehicles and lots of action and fun, when speed, skills and tactics are essential to win!";
fDesc[14] = "shooter, arcade-style game ambiented on modern war and with several vehicles and lots of action and fun, when speed, skills and tactics are essential to win!";
fDesc[15] = "different colors and you have to create matches (or groups) of 3 or more pieces in order to clear them from the board. There are three urns you have to fill with the triangles you clear from the board.";
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 = '...';
}
}