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] = "very funny and entertaining. It is also very easy to use. It has got some good visual and audio effects.";
fDesc[3] = "your neighbors efficiently. The game includes 3 different modes: Speed, Memory, and Simon says. The three of them offers a different game play, although you're essentially doing the same thing: picking orders and dropping them on the corresponding restaurant.";
fDesc[4] = "next stage, for example, in the first stage you have get eggs from hens. To get eggs hens must eat grass, and to get grass you have to water the ground. This is the kind of tasks that you have to carry out. In later stages you have to deal with pigs, cows, and many more...";
fDesc[5] = "basically a time management game. What set it apart from other games is its good interface, playability and unique theme. Have your pizza prepared by farm animals!";
fDesc[6] = ", you’ll be representing Bell in this game and your mission is to succeed in this adventure, keeping the customers happy and making the most profits you can.You can download and try this game for 60 minutes before you buy the licensed version. Also, you can try it online.";
fDesc[7] = ", you´ll have to pilot your top-secret helicopter loaded with cool gadgets around the alien menace and eliminate all alien bugs. Some of your enemies can shoot you. From time to time a big helicopter will help you paralyzing them with a ray.";
fDesc[8] = "and recoups the wasted space. Its features include Defrenzy, Frenzy snap, Refrenzy, and Frenzyman. Defrenzy allows you to delete all the fonts excluding the necessary fonts required for MS window operations.";
fDesc[9] = "have customers of all ages and conditions, from newbie joggers to weight lifters. Your job is to teach them how to work out and reach their goals.";
fDesc[10] = "Impersonating Charlie or Hannah, a couple of just graduated doctors, you will have to cure patients with baboonic plague, bipolarbear disorder, mother goose bumps, 3rd degree sideburns and many more. They would graphically transform as you cure them.";
fDesc[11] = "valuable customers. Play this fast and challenging game.";
fDesc[12] = "can. Protect silver and golden fish from the garden. If cats take away all your fish you will loose, you must keep at least one of your fish before the time is up.";
fDesc[14] = "music. It integrates multiple game play modes including Freestyle Challenge and Tournament allowing the user to shoot for the highest score the highest level or can just play for fun.";
fDesc[15] = "game, Danny Phantom. The left mouse button is used for firing colored projectiles at cartoon ghosts attacking Danny. These ghosts and an evil character named Vlad Plasmius, constantly invade Danny wherever he is in the Danny Phantom ™ Ghost Frenzy 2.6 game";
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 = '...';
}
}