var fDesc=new Array();
fDesc[1] = "Triangle. Now she is doing a research about her relative and the mysterious place itself. The gameplay is very simple: you are presented with a list of objects to find in a messy place - and you have to spot them all clicking on each discovered one.";
fDesc[3] = "any or all of the eleven different plants available at the bottom of the window. There are star daisy, iris, violet, buttercup, daisy, day lily, maiden grass, sunflower, lily of the valley, jonquil, and tulip.";
fDesc[5] = "lingerie. 40 configurable transition effects, and totally customizable timing, shuffling, and image resizing settings.";
fDesc[7] = "resolution photos in provocative outfits and poses.";
fDesc[8] = "in 4 different worlds: Forest, Ancient Egypt, Medieval Castles and Space Ship.";
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 = '...';
}
}