var fDesc=new Array();
fDesc[1] = "that needs to eat smaller fishes to grow up; likewise, we get points, bonuses, and pass on to next levels. The game becomes more and more interesting (and difficult) as we grow bigger and get to eat our old enemies.";
fDesc[2] = "4 unique tanks of action-puzzle adventure!";
fDesc[3] = "sit, scare, pounce, etc. You have to feed, clean, sleep, health, make happy, etc. You can reward your dino with a treat after each trick, buy clothes and dress up your dinos, zoom in, zoom out, tilt and rotate in real 3D.";
fDesc[4] = "Sony PlayStation 3. The game mixes action on foot and mecha (also known as meka or mechs: pilot-controlled walking vehicles) the main character is played by Korean actor Lee Byung-Hun.";
fDesc[5] = "engaging games. Download Smart Cook and Play for Free!";
fDesc[6] = "accepted to “Caregivers International”, a company that provides healthcare and in which you’ll be working as a maternity ward nurse. You’ll have to feed, burp, bathe, change the diapers and soothe the babies.";
fDesc[7] = "pieces of a mysterious map, all around the world. In order to acquire the map pieces that some museums have, you must find ancient artifacts to trade with them.";
fDesc[8] = "features colorful and spectacular graphics, great sounds and an addictive gameplay. To get the game, you first have to install the iWin Games Manager and the game will be downloaded and installed automatically.";
fDesc[9] = "play in a independent way of the main game, you can choose between six nations of the main game(France, Polone, Russia, Egypt, Germany and England) and you will find three new nations Spain,The Confederation of the Rhine and the Great Duchy of Warsaw.";
fDesc[10] = "them. Follow the tasks from you boss, and solve each problem with him. Your boss considers you a good detective and this game will challenge you to be the best detective.";
fDesc[11] = "of Feed the Snake is that the program will be attractive for experienced gamers as well as for beginners. The computer graphics and the design of the game are done very well.";
fDesc[12] = "and be careful not to mix the aggressive fishes with the weak ones, or they will attack them or even eat them. Make your fish store grow as you buy new species.";
fDesc[13] = "animals that appear in the grid, giving them the right food, before times runs out, or you run out of food. You will achieve this by picking different kinds of food and placing it adjacent to a group of similar animals.";
fDesc[14] = "funny monster.";
fDesc[15] = "and absolutely FREE!";
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 = '...';
}
}