var fDesc=new Array();
fDesc[1] = "take the user from World War I to the modern day and back to World War II. This particular game takes you to the South Pacific Ocean and helps relive the scenarios of the Japanese-American battles.";
fDesc[2] = "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[3] = "goods. I you love action and persecution, Mad Dogs on the Road will give the right option to challenge your ability and fun. This game is a free download game and a very simple game to play.";
fDesc[4] = "own prison. You can create the prison you want, selecting from seven of the toughest prison styles in the USA. You can build fences and micromanage towers, watch the inmates through the different cameras, and even unleash the dogs in case things get ugly.";
fDesc[5] = "includes a complete list of titles which represent different missions for Nancy Drew to solve. In Nancy Drew: Ghost Dogs of Moon Lake, Nancy will be trying to solve the mystery of the Ghost Dogs of Moon Lake.";
fDesc[6] = "challenge taking care of a certain number of pets like dogs and cats. In this game each animal has different humor, some are calm and some are a menace.";
fDesc[7] = "up for his little friends. The unforgettable adventure awaits you!";
fDesc[9] = "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[10] = "checkers, gomoku, renju, pente, connectris, othello, ataxx, barrier, stack4, clobber, entropy, Cats and Dogs, LOA, 3 Musketeers and more.";
fDesc[11] = "Max Magnus Norman.";
fDesc[12] = "Golden Retriever is a popular breed of dog, originally developed to retrieve downed fowl during hunting.";
fDesc[13] = "different game styles - also in multiplayer mode.";
fDesc[14] = "white coat with either black or liver spots.";
fDesc[15] = "and blue. One night, he dreamt his pictures had become alive and the multicoloured sheep had got lost.";
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 = '...';
}
}