var fDesc=new Array();
fDesc[1] = ", you´ll have to watch out for dangerous puzzle locks. The game has high resolution graphics. It can be played in four modes: Classic, Speed, Zen and Mind Bender, in Rainbow, Giant and Super Chuzzles. You´re awarded with trophies as you win.";
fDesc[3] = "isn't, as lots of runes are in our way. We must remove the runes by creating matches of three or more similar runes. To do so, we must pick a rune and drag it to the desired position. If we move a rune without making a match new runes will appear in the game board.";
fDesc[4] = "he tracks down the killers, uncovering conspiracies involving the highest levels of the rabbit kingdom.";
fDesc[5] = "their avatars, as per their taste; be it the voice of a fox, cat, squirrel or something else. It features voices of 10 different animals including that of a Bigcat Male, fox female, fox male, Bunny Female, Squirrel Male, a Housecat Female, Housecat Male, Wolf Female.";
fDesc[6] = ", tell stories, create your own world and meet interesting people from all over the world.";
fDesc[7] = "furry creature named Dweep through a series of thirty challenging logic puzzles. Every level is laid out with obstacles and useful items such as...";
fDesc[8] = "board to blow up the bars and release your furry friends. But be careful, you might be hurt by laser beams or fall into swamp!";
fDesc[10] = "of the four Dweebs, and race against the Dorks that threaten your land and friends.";
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 = '...';
}
}