var fDesc=new Array();
fDesc[1] = "You will play in different scenarios, from the jungles to the plains and everywhere in between. There are some special pieces that can be connected to any other, even different ones, to form a tile.";
fDesc[2] = "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[3] = "objective is to save the Happylanders, in order to rid the world of evilness. The game includes a level editor. By using it you can design your own levels.";
fDesc[4] = "Windows... the downloadable version of ALCHEMY! Now you can play anytime you like, of";
fDesc[5] = "they are. Under this premise is presented this peculiar World of Goo, an original game of wits controlled by the mouse. As I said these droplets are the essence of the game.";
fDesc[6] = "certain items in different messy scenes. What makes this game a bit different from others of the kind is that it organizes the game into three different types of searches: Silhouette Round, Find 10 Round, and Puzzle Round.";
fDesc[8] = "bigger and increase the challenge. You must be smart and fast to reveal all the hidden tiles in your screen board, do it before the time is up or game will be over.";
fDesc[9] = "features cool 3D graphics with funny cartoon-like characters, pleasant background music, and good sound effects. Although the graphics look might look a bit silly or childish for some people, the game is not for children and is substantially challenging.";
fDesc[10] = "Zoombini Isle, and it will take a clever mind to help the Zoombinis navigate their way to safety. Standing between you and your destination are twelve perilous puzzles, with four levels of difficulty each.";
fDesc[11] = "seized Zoombini Isle, and it will take a clever mind to help the Zoombinis navigate their way to safety. Standing between you and your destination are twelve perilous puzzles, with four levels of difficulty each.";
fDesc[12] = "like islands, holiday resorts, beaches, and exotic locations. You will also enjoy viewing wild animals, magic sunsets, the colorful deep sea world, and even the traditional festivities of each place.";
fDesc[13] = "Earth because their spacecraft has broken. These funny little aliens have landed in ten of the biggest cities of the World such as London, Paris, New York, Moscow, and so on.";
fDesc[14] = "of the world, in high quality pictures for you to complete and have a great time doing so. It is straightforward, entertaining, and with lots of options for you to fully enjoy it. This game should definitely be in your jigsaw puzzle collection.";
fDesc[15] = "are not. The green squares mark the shape of the desired building. We must use our powers to place the falling blocks in the desired position. At first we can't rotate the blocks, as our powers are still too weak, but as we get more powerful, new abilities will appear.";
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 = '...';
}
}