var fDesc=new Array();
fDesc[1] = "screensaver will take on a trip to the bottom of the ocean. You will be able to watch many different kinds of sea creatures. Fish, octopus, crabs, manta rays and even a mermaid or two.";
fDesc[3] = "competition in an Underwater Kingdom. To do that, the player needs to solve different puzzles to provide the mermaid with all the things she needs for her sea garden.";
fDesc[9] = ", dresses or bikinis and skirts, diverse hairstyles, lips, eyes, eyebrows, selecting colors. You can print you design and publish it online.";
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 = '...';
}
}