var fDesc=new Array();
fDesc[1] = "will be able to select among cats, dogs, birds, tropical fish and hamsters. But there are not only animals in this expansion: it also brings new objects as houses for dog, cages for parrots, pictures and more.";
fDesc[2] = "lessons. After months of studying Ellie decided to start her own business, and since she didn't have an office to work placed the equipment in the yard of her house. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[3] = "their new business up and running. The player can take a tutorial to learn to play the game. You must pick up the pet clicking on it, click on the grooming station to groom cats fur and clip their nails or in the bath station to clean a dog, or put a ribbon to a dog or a cat.";
fDesc[4] = ", each item is needed for your investigation of the kidnapped dog case. You have to look the scenes very carefully, trying to find the hidden items on the list. When you see a item, just click on it to update the list.";
fDesc[5] = "one hour, or play web trial. In this game, Nana has invited us to come to her adoption center and manage it. We must look after stray animals. We must give them food, water, and keep them clean and healthy. Then we must match the animals with their perfect owner to be.";
fDesc[6] = "100 levels.";
fDesc[7] = "to remove all of the cards from the ten playing stacks. This Spider Solitaire games has three difficulty levels.";
fDesc[8] = "wars that unfold on the deserted streets of post-holocaust America. There's only one winner on the road. You be it!";
fDesc[9] = "sitting at the shopping center accompanied by their four pets. Nita and Nora meet them. They are carrying Snappy, their blue dog, inside their fashion bag. The dog runs away. They find out that he has been kidnapped We must help the group to find Snappy..";
fDesc[10] = "it to its house. Each level presents more bones, and other objects like balls and dogs, as well as obstacles to avoid which makes the game more challenging and attractive.";
fDesc[11] = "your puppy from a wide variety of breeds, sizes and colors, including boxers, Labradors, chihuahuas, beagles, German shepherd, and lots more, and of course, give it a name";
fDesc[12] = "up for his little friends. The unforgettable adventure awaits you!";
fDesc[13] = "them, training them and performing many other tasks to take care about them. The trial version only works for 60 minutes, but these captivating lessons in responsibility are worth the money.";
fDesc[14] = "Golden Retriever is a popular breed of dog, originally developed to retrieve downed fowl during hunting.";
fDesc[15] = "white coat with either black or liver spots.";
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 = '...';
}
}