var fDesc=new Array();
fDesc[1] = "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[2] = "guiding the Magic Ball with Incredible Ink. Two distinct game modes, Escape and Break All, are packed with gorgeous art and detailed level design. Its fun times two!";
fDesc[4] = "Ball 2.";
fDesc[5] = "dodge and duck through an intricate theme park with the unflappable goal of saving the infamous Mr. Meow.";
fDesc[6] = "with your paddle to blast off all the blocks on the level and proceed through 6 different epochs from Antiquity to Wild West.";
fDesc[7] = "who brought you Magic Ball has everything from Grand Prix racing tracks to giant planets spinning through space.";
fDesc[8] = "destruction. Take control of a ship armed to the teeth and ready for war. Soak up jaw-dropping visuals and ear-shattering audio.";
fDesc[9] = "paddle and ball effects. The in-game music is a compilation of some selected Imphenzia tracks";
fDesc[10] = "a Bouncer and then a Splitter right there and there? Perfect! That?s one path down, and a whole bunch more to go! Welcome to world of Pathstorm!";
fDesc[12] = "The time has come when they will be found! Who is the hero who will discover them?";
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 = '...';
}
}