var fDesc=new Array();
fDesc[1] = "challenge!";
fDesc[2] = "the game is to arrange the different types of candies into rows in order to crunch them away. Different candies will give you different points. Once you complete the required number of rows in time you will jump to the next level…";
fDesc[3] = "festivals of all types, including the celebration of anniversaries and other elegant or informal events. Of course we will have a lot of variety in the paraphernalia that supposes preparing a celebration, whether in the floral subject matter, the furniture, the buffet, games...";
fDesc[4] = "student in a cooking school and your mission will be to complete a series of cooking tasks by following several steps within a given time span.";
fDesc[5] = "graphics. This one is different. In Stand O Food 2 the user must think fast to get the correct hamburgers that customers demand.";
fDesc[6] = "punished you to work at the Yummy Drink Factory and serve delicious drinks to thirsty villagers as you work your way to freedom. You can unlock tasty new recipes and decorate your shop to keep your patrons happy to earn enough to earn your liberty.";
fDesc[7] = "of Feed the Snake is that the program will be attractive for experienced gamers as well as for beginners. The computer graphics and the design of the game are done very well.";
fDesc[8] = "bigger entities than you and persecute smaller things. You have to eat them and grow big enough to eat the others.";
fDesc[10] = "collection features a special topic: desserts. It includes fifty pictures of the most tasty desserts in the world, among them birthday cakes, pies, cookies, ice creams, and chocolates.";
fDesc[11] = "catch something tasty, and you'll understood why theese games, germinated in beginning of computer age is all right now!";
fDesc[13] = "But you have to stay on your toes to avoid the Spike Ball looking to crash the party! Tons of game features keep the action moving at a nonstop pace! In exchange for free access to games, users are shown 2-3 Websites while browsing online. Zango may collect anonymous data about sites visited, but no personally identifiable information is collected. Zango is easily uninstalled via the Add/Remove Program on your PC.";
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 = '...';
}
}