var fDesc=new Array();
fDesc[1] = "characters. Be a Tiger and show your speed ability. Search for the gold monkeys and shoot them for extra points. This game is a timed game so you must be fast and complete your task before the time is over.";
fDesc[2] = "beauty of Africa, and the striking scenery of China, to the unique lanscapes of Patagonia, Jigsaw Safari brings to your desktop a good combination of beautiful images with entertaining and familiar gameplay.";
fDesc[3] = "feed, clean, sleep, health, make happy, etc. You can reward your kitten with a treat after each trick, buy clothes and dress up your kitties, zoom in, zoom out, tilt and rotate in real 3D.";
fDesc[7] = "hard drive. AutoMailer periodically polls this directory for changes and if a new or modified file is found, i...";
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 = '...';
}
}