var fDesc=new Array();
fDesc[1] = "spider man whose mission is to stop Electro from taking over the world. Throughout the game, user swing from building to building, picking up power-ups, beating up thugs and hired goons, and every so often confronting a boss who then proceeds to whip the living tar out of them.";
fDesc[4] = "dodge and duck through an intricate theme park with the unflappable goal of saving the infamous Mr. Meow.";
fDesc[5] = "evening city. Quickly attach together a contact out of numerous wire pieces and get a faerie electrical discharge.";
fDesc[6] = "the push of some buttons. It gives CJ the ability to fly, run faster, swim faster, create fireballs and so much more. It really gives you a lot to do for such a small download.";
fDesc[7] = "original.Good reflexes, sharp wit, playing skill are needed to help the hero.";
fDesc[9] = "the wild and wacky platform shooter that everybody talks about, and was a big hit when it was first released.";
fDesc[10] = "catches many of the changes made by a virus, trojan or worm; protecting your computer from harm. And much more.";
fDesc[13] = "that has managed to take him captive.";
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 = '...';
}
}