var fDesc=new Array();
fDesc[1] = "all know that babies are indeed delivered by storks. It the only fact that we humans know for sure. In this game, you can see how the whole process goes. Babies are first manufactured in a factory, where conveyor belts take them into several machines to assemble them.";
fDesc[2] = "also very entertaining because you keep very busy all time. You need some multitask handling skills in order to succeed in this game. You can try this game for 60 minutes before you buy the licensed version.";
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 = '...';
}
}