var fDesc=new Array();
fDesc[1] = "to guide the character while it shoots bricks and obstacles running around the screen and collecting its baby chicks. As in every brick-busting game, you will have power-ups, bonus worms and treasures that will fall over you as the levels progress.";
fDesc[2] = "ability and you reflexes. Shoot your ball and rebound it to strike and destroy all the obstacles in your screen. Once you clear your board your task will be completed.";
fDesc[4] = "with your paddle to blast off all the blocks on the level and proceed through 6 different epochs from Antiquity to Wild West.";
fDesc[5] = "a brilliant look as if the desktop had been converted to a water surface. The Screensaver features water ripples of many types, which enhances the beauty and breaks the monotony of the regular windows deafult screensavers.";
fDesc[6] = "screen. In this game you must move fast and grab a ball from the chain to shoot it back and place it in groups of identical colors in order to destroy them all.";
fDesc[7] = "and bring you new action. You must clear and destroy all the bricks in your screen board to reach new levels. Try to catch all the butterflies and to unlock the treasures to get high bonus points.";
fDesc[9] = "on platforms and collects stuff while avoiding the enemies. The game includes 22 levels of action with different scenarios and enemies to avoid. It also comes with a level editor that allows players to create their own levels.";
fDesc[10] = "speed and obstacles, you must destroy the blocks in front of you and collect some items, lives and bonus score points.";
fDesc[11] = "particle effects and object morphing to keep you mesmerized. The gameplay is enhanced by new power items and bonuses to keep you thinking.";
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 = '...';
}
}