var fDesc=new Array();
fDesc[1] = "The game features a charming turtle in its mission to save the bay where it used to live, from the invaders' attack. The story behind this game is really thrilling.";
fDesc[2] = "things, you grow, and become able to eat bigger fishes, provided they are smaller than you. You can join your counterparts from all over the world through Internet and beat your best score.";
fDesc[3] = "liberate young turtles and collect all the diamonds. To liberate them you must jump over the young turtle after finding him and defeat your enemy. Try to find extra diamonds in secret places.";
fDesc[7] = "levels and three game modes (including stunt mode) await you. There are 11 unique sea creatures hunting you down. You will meet Missile Fish, Robo Birds, TNT Turtles, Robo Sharks, and more!";
fDesc[9] = "few divers in the background.";
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 = '...';
}
}