var fDesc=new Array();
fDesc[1] = "videowall-Effects with 2D & 3D, sensational. By forgoing the overall complex key frames with a extreme easy handling! Plugins for most actual NLEs available!!";
fDesc[2] = "of same colors to collect them and defeat the evil black wizard, this game will give you a great challenge of time and fast abilities. A simple and easy game with a lot of good fun play.";
fDesc[4] = "together. Pay attention to little colored fishes that will appear, because if you click over them you will automatically destroy all pears with that color. You can play it with pearls appearing from top to buttom or viceversa.";
fDesc[5] = "in charge of exploring caves, beaches, and sunken vessels in search of a lost artifact. The game features only one game mode with 15 different locations, in which you will experience 5 three-mission sets and four bonus games.";
fDesc[6] = "collect a certain number of pearls in order to advance between levels. For doing so, you must click with your mouse to the point where you want the diver to swim to and collect the pearls from the oysters.";
fDesc[7] = "his boat when all of a sudden three aliens sink his boat to the bottom of the ocean and tell him they need his help finding the Pearl of Poseidon.";
fDesc[8] = "game. You have to look the scenes very carefully, trying to find the items on the list. When you see an item, just click on it to update the list. In addition, it offers a bonus by detecting differences between two almost identical scenes.";
fDesc[9] = "very easy to play but full of fun and entertainment. Graphics and photos are great, scenarios bring you a very realistic scene of a mysterious case.";
fDesc[10] = "as many color pearls as you can.. Aquacade takes places underwater, you will be able to reveal secrets and get help from friends to achieve your task.";
fDesc[11] = "shells where a pearl is hidden. You see the game is very simple, so try your fortune in Sly Pirate!";
fDesc[12] = "such as Blackberry Pearl, Sony Ericsson Walkman, Sandisk Sansa, Sansa View and Archos players helping you manage your media library.";
fDesc[13] = "to help Bonbon collect candies, beat monsters and climb levels. Within a spooky atmosphere, with all types of monsters and dangers, Bonbon has to recover the collection of candies that the monsters have stolen from him.";
fDesc[14] = "then click one of them and make them disappear making the rows and columns above collapse. It is very simple and easy to play, but in my opinion a bit boring since it is just like every other collapse game.";
fDesc[15] = "three shells where a pearl is hidden. You see the game is very simple, so try your fortune in Pearl Finder!";
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 = '...';
}
}