var fDesc=new Array();
fDesc[1] = "the Dynamic Duo. The story takes place in Gotham city as the criminal masterminds locked up in Arkham Asylum have broken loose and Batman and Robin have to save the day.";
fDesc[2] = "interesting story. Once you match up the necessary tiles to win the game, you must uncover and match the golden Yin and Yang tiles.";
fDesc[3] = "others. Among this puzzles you will find, 24 Puzzle, a game whose main objective is to align the numbers in order, that is from 1 to 24. Although it sounds quite simple, it may get really challenging as well as entertaining.";
fDesc[4] = "multiple characters, levels, and footbags to win trophies, experience, and abilitiesIncludes an editor for making your own footbags and adding new character skins.";
fDesc[5] = "snit, he is gone and locked them all in their temples until a mortal actually beat him! There’s no need to say that the player of the game is the mortal who has to beat Hade Fancis";
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 = '...';
}
}