var fDesc=new Array();
fDesc[1] = "guesses. The game includes 8,000 words and phrases arranged into several categories that go from TV shows and music, to History and Literature. HangAroo is very entertaining, and a really good pastime for adults and kids as well.";
fDesc[3] = "simple; you only have to turn off all the lights on the board by clicking on each piece. The game is simple, small, but entertaining enough to keep you busy for a while. Besides, it can very addictive. Definitely a good pastime.";
fDesc[4] = "into his Ball of Mystics just for you! Just enter your question when prompted and the Guru will peer deep into his ball for the answers you seek.";
fDesc[5] = "picture on the board. This picture is divided into pieces, and those pieces are scattered across the board. The main aim of this game is to move all those pieces in such a way that the given picture will be completed correctly. This game is suitable for all family members.";
fDesc[6] = "or 7 letter word with hidden letters. Reach deep into your problem solving skills to guess the missing letters.";
fDesc[7] = "level and advance, just end up with only 1 Blob left on the board. Further details available on the Blobs product page.";
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 = '...';
}
}