var fDesc=new Array();
fDesc[1] = "dinner, do a festival, have an appointment, enjoy a bowling alley or go to the music store. Also, they will have their own cars, which they can choose among various types and will serve them to go to any of the places named and also to work.";
fDesc[2] = "training in which the player is going to be explained the idea of the game. When starting the real game the player will not have a rest and will have to pay attention all the time.";
fDesc[3] = "things, you grow, and become able to eat bigger fishes, provided they are smaller than you. You can join your counterparts from all over the world through Internet and beat your best score.";
fDesc[4] = "series! Restore shabby hometown restaurants to their former glory with Flo and her grandma.Meet six new customers, take reservations, and dress-up and train waiters.";
fDesc[5] = "People keep coming for their tables. Once you get them the table, they want to order. Then, they want the food fast, and finally they want the bill! Everything has to be made fast and right; otherwise the customers will be mad and won’t tip you well.";
fDesc[6] = "In this medieval-inspired time management game you have to enter a magical world and prepare delicious food for hungry customers. Upgrade your equipment and use magical devices and abilities to your advantage.";
fDesc[7] = "graphics. This one is different. In Stand O Food 2 the user must think fast to get the correct hamburgers that customers demand.";
fDesc[8] = "lot of strategies to avoid the insects from eating and destroying your flowers. The game has got some excellent video and sound graphics and nice effects too.";
fDesc[9] = "that you must serve and satisfy. They will ask for different snacks like hamburgers, pizzas, chips, coffee, donuts and cakes. increase your machines and business to bring more clients.";
fDesc[10] = "valuable customers. Play this fast and challenging game.";
fDesc[11] = "the babysitter of baby monsters. Some of the actions you have to take care of are: placing babies in a crib for a nap, putting hungry babies in a high chair to be fed, after a fight, put both babies band-aids on, among others.";
fDesc[12] = "feels like to be a murderous fish! It's a fantastic multiplayer game. Each player is represented as a small fish in the ocean.";
fDesc[13] = "missions, all of them regarding food. You need to complete the 6 missions in order to help the hungry, from the moment the crisis arises to the moment the assistance is no longer needed. Given the nature of the game it's licensed as a freeware and freely distributable.";
fDesc[14] = "people away? Professor Fizzwizzle, of course! Rescue hungry animals, bounce bubbles and solve a mystery, all at the same time! Download FizzBall Deluxe now, it's a joy to play for people of all ages!";
fDesc[15] = "continue a trip to a big animal party. This game has great graphics and moves, you will enjoy the fun and the speed of this game. Each level of the game will give you more fun.";
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 = '...';
}
}