var fDesc=new Array();
fDesc[1] = "her business running. Your task is to make sure she does all her work and provides the farm with money. You will have a place at the market where you can put all your food for sale.";
fDesc[2] = "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[3] = "through this beautiful world full of risky turns and joyful surprises.";
fDesc[4] = "before time runs out.";
fDesc[5] = "itself basically consists on looking and picking items from different locations, following a list provided by the game. The game itself basically consists on looking and picking items from different locations, following a list provided by the game.";
fDesc[6] = "puzzle game with three modes: Action, Adventure and Bonus Game. Solve the puzzles and learn all about the animals that live on the island, and collect lots of trophies.";
fDesc[7] = "this game is Diego. He is Nickelodeon's Dora's cousin, a nice boy who likes to help animals at the Animal Rescue Center his parents own. This application is a good choice for children 3 to 6 and has a very nice interface as well as good sound and video quality.";
fDesc[8] = ", cd-Rom, and Playstation 2 players that offers them a challenging hunting game experience. Players of this hunting game are challenged with 96 fast-paced hunting missions that take place across 24 simulated states and provinces of the USA.";
fDesc[9] = "vet. There are horses, calves, bunnies, ducks, sheep, chickens, etc. Every morning you have to check your to-do list on your PDA, it will show you the duties.";
fDesc[10] = "installed MorphVOX, adding eleven new barnyard sounds: Big Cow Moo, Chicken, Donkey, Goat, Horse Snort, Horse Whinny, Owl, Pig Grunt, Pig Squeal, Rooster and Turkey.";
fDesc[11] = "gloves or the magnifying glass to search for the problem and to find the cure. Each level will increase difficulty and the number of activities. Grow your Vet with other employees and buying new tools to take care of more kinds of animals each time.";
fDesc[12] = ", Kangaroos, crocodiles, even elephants. If you love animals you will enjoy to care for your own farm and you will enjoy the challenge of feeding them and making them grow to sell them to make your farm a great animal place.";
fDesc[13] = "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[14] = "exotic animal and plant species. Realistic animal development from birth to aging takes place in the zoo, and users experience animal behavior and social activity depending on how well the animals are taken care of.";
fDesc[15] = "consists in shooting some nasty rabbits that descend from helicopters in parachutes. You take the role of the Chief Guardian of the Asher Castle, which is constantly under attack by these furious rabbits, all of them with a nasty appearance.";
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 = '...';
}
}