var fDesc=new Array();
fDesc[1] = ", although its development is daring: you have to create a creature, highly envolved to be the dominant species on the planet and, finally, explore other worlds and dominate them.";
fDesc[2] = "files into any format you want. Most popular formats are supported, and chances are that your desired format is among the supported ones.";
fDesc[3] = "celebrate our own party. In sum, this stuff pack presents the following additions: * It Permits to hold a party. * It Adds five new styles of music (Hawaiian, Rave, Techno, Rap and Disk). * New interactions and activities.";
fDesc[4] = "leaves it will begin to grow. After a while, the flowers on the tree will bloom and then fruit will begin to grow. By picking fruit you earn money. You need to collect enough fruits to meet your goal before time is up.";
fDesc[6] = "different world,you will meet Hoshi a blue and lovely zwooph with a big trunk like the elephants. his job it to make clouds with his trunk and in that way have rain so his island can have life.";
fDesc[7] = "long, fluffy tail. He needs this trunk for the mini-games in Bliss Island Deluxe. Puff and blow with Hoshi's trunk and move the objects into a hungry mouth or around all sorts of obstacles.";
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 = '...';
}
}