var fDesc=new Array();
fDesc[1] = "a team of worms and to fight against the other team. 3D graphics. Good sounds. Really fun. You can compete agains the pc or other player.";
fDesc[2] = "variety of different arrangements to play, organized into what is called “levels”. With a wonderful underwater look interface and a warm music you enter into a welcoming atmosphere while playing this game, achieving its main goal: entertaining you.";
fDesc[3] = "Savannah desert while trying to get back to your New York ZOO. The game is obviously based on the movies. Like with all games of this type, the experience is not meant to be deep or extremely meaningful.";
fDesc[4] = "protagonist work on the security station. Now, with the bandits still in the museum, she has to track them down and restore the order in the facilities. Of course, she will need your help to do that.";
fDesc[5] = "Brookdale!";
fDesc[6] = "character) lives in a fantasy world, her name is Agavaen, she is a thief who lives with other thieves in the woods, but after a fight with her fellows she is on her own.";
fDesc[8] = "skill levels! -Includes over 40 special bonus levels! * Easy to learn and control *Exciting trophies to unlock! -Win dozens of cool trophies by accomplishing special feats!";
fDesc[9] = "mini golf game around! Pick up your golf club and play your way through more than 50 unique holes, spread over 5 courses.";
fDesc[10] = "single ship shooting various sized space objects from the sky, Spheres of Chaos delivers an eye-boggling visual encounter...";
fDesc[12] = "completing your tasks. You must move fast and try to find items that belong to the multiple categories provided. Complete your task before time is up or the game will be over.";
fDesc[13] = ", \"Mayhem Intergalactic\" is nonetheless surprisingly strategic. Play against the computer or over the internet.";
fDesc[14] = "Coolect supports 47 different types of media and can import your entire contacts list from Outlook or Outlook Express.";
fDesc[15] = "elements of several classic puzzle games like Tetris, Bejewelled and Collapse. Includes a time and puzzle mode of play.";
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 = '...';
}
}