var fDesc=new Array();
fDesc[1] = ", there is a lot more than LEGO-created characters and environments to it. This game divides the three Indiana Jones movies into 6 chapters each, so it is like playing through the movies all over again.";
fDesc[2] = "Game. Just to give an idea, take into account that the game has seventy two levels to play. The whole game is designed to make you feel as you were inside a Disneyland motion picture, with the fable characters, the touching music and the fantastic adventures to live.";
fDesc[3] = "play with animal cards or large Disney cards. Improve your memory by playingwith your favourite pictures. You can play from the age of 3 to 103. If ...";
fDesc[4] = "at the different stages, desserts, woods, jungle, etc... All you have to do is find them and jump over their bubbles in order to guide them to the exit door of the stage.";
fDesc[5] = "Diego save a lost wolf pup. Diego, his sister Alicia and cousin Dora are part of the mission team, and your child can work together with them to bring the youngest wolf pup back to the Animal Rescue Shelter.";
fDesc[6] = "playful activity for their free time, coloring pictures is a good chance to encourage artistic expression and creativity in kids.";
fDesc[7] = "is very powerful, it has all the standard features that similar products have, and is an excellent, easy to use Icon & Cursor Creator, Icon Editor, Extractor and Cursor Animator. It allows you to create and edit icons of any size and color.";
fDesc[8] = "same color. You can connect the balls horizontally, vertically, or diagonally. When you connect five balls, that row will disappear. The game is over whenever the whole board is filled with balls.";
fDesc[9] = "as your kind host, and he will help you to move through the different games and coloring pages. Some games are pure fun while others are designed to expand your knowledge about dinosaurs too. This application is intended for kids aged from 5 to 12.";
fDesc[10] = "stable and fully adequate for everyday use.";
fDesc[11] = "learn alphabet.";
fDesc[12] = "will help find and fix a significant number of programming bugs, mistakes and inconsistencies in Delphi programs before their release.";
fDesc[13] = "the child learns colors, shapes, letters, numbers, and more while hearing their parents voice comming out of the speaker. Designed so the child can randomly bang on the keyboard without causing undesirable side affects. Parents will have topress the keys for the youngest, but your child will get the idea pretty quickly.";
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 = '...';
}
}