var fDesc=new Array();
fDesc[1] = "adventure in 2D, a remake of a popular classic game. Does it feel good to go back to arcade's roots. The environment, with a look, feel, and play that feels unbelievably classic, with new elements that do a fantastic job.";
fDesc[2] = "and Bust-a-move games. We can say it a clone of these games. It is actually a puzzle game so it will required some mind to play and win the game, but it is very easy to play and does not require any prior training.";
fDesc[3] = "above.";
fDesc[4] = "borbs, each bubble has different personality like Mary Ann that is nice, Crabby that has bad humor, Ranty and fuzzball. Plan each of your shots to get extra points and to stop borbs to get to the dangerous zone or the game will be over.";
fDesc[5] = ", then the wall comes crumbling down. The game has good amount of power-ups but the formula can be seen in several other games. It is still a solid recreation of the puzzle formula.";
fDesc[6] = "you from the top of the screen. You will need to shoot bubbles of the same color that the one of the two balls that you have in your cannon. You can switch between them by pressing the right button of your mouse.";
fDesc[7] = "adjacent bubbles of the same color in order to burst them out of the board. You achieve this by double-clicking on a group of adjacent bubbles, and the whole group will burst, disappearing from the board. The bubbles above them will occupy the empty spaces left.";
fDesc[8] = "challenge you in a speed smart puzzle. The main objective of this game is to help animals and free them from their bubble jails. You must form groups of bubbles of the same color.";
fDesc[9] = "on the mouse and it will fire a bubble against the big group of colored bubbles on the top. Be fast enough to destroy all the bubbles on the screen and you will advance to the next level. If the bubbles reach the bottom of the screen and you will lose the game.";
fDesc[10] = "logic and puzzle games that will test your skills.You will spend hours of entertainment, you will never get tired of playing a single game again. You have 101 game to choose from!";
fDesc[11] = "one of the best puzzle games ever done: Bust-A-Move (Puzzle Bubble). For those who don't know Bust-A-Move the aim of the game is to get through levels by exploding dinosaur eggs of the same colour.";
fDesc[12] = "puzzle junky looking for a challenge, you simply can't pass on this game. The rules are quite simple";
fDesc[13] = "several balloons scattered. These balloons are of different colors and you have to get your magnet close to them in order to catch them. When you gather four balloons of the same color you clear them from the boar.";
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 = '...';
}
}