var fDesc=new Array();
fDesc[1] = "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[2] = "number that matches one of the dice. Once you fill in a row you earn points. Some dice will give you bonuseslike extra rolls or extra points";
fDesc[4] = "trying to earn enough cash to survive. Visit the shipyard, then outfit your new ship with weapons and other enhancements. Guaranteed fun!";
fDesc[5] = ", \"Mayhem Intergalactic\" is nonetheless surprisingly strategic. Play against the computer or over the internet.";
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 = '...';
}
}