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] = "will have to take good care of animals and plants, fulfilling their needs suchs as food, water and else. Then you'll have to sell your production to local restaurants and collect money.";
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] = "work in a restaurant and keep costumers happy. You must be fast and considered with the people that arrive to your place, sit them down, take orders, serve food, clean and give them their bills to pay. You will enjoy a lot this experience and this great fun game.";
fDesc[5] = "minutes. The program features more than 8,000 recipes, including grill recipes, appetizers, entrees, foods for kids, and incredible desserts.";
fDesc[6] = ", let’s you know that the game is related to the food business. Actually, you’re gonna be representing SpongeBob who will be playing the role of a waiter, doing his best at serving customers in his dinner.";
fDesc[7] = "bride and groom with the wedding location, the honeymoon, the reception and dinner. However, the bridal couple and the guests don't always make it easy.";
fDesc[8] = "back in time to those days in which Christmas morning was the most awaited event. Do you remember having dinner and then listening to your parents telling you to go to sleep or Santa wouldn't come?";
fDesc[9] = "can. Protect silver and golden fish from the garden. If cats take away all your fish you will loose, you must keep at least one of your fish before the time is up.";
fDesc[10] = "have to do simultaneously a lot of things during our cooking, like answer our e-mails, picking up our telephone messages, chatting with Mom, etc. You name it! we are working simultaneously with things during our cooking!. This timer will notify us when our meals are done!";
fDesc[11] = "everything with great detail. In order for you to create your table plans for events, the program provides five steps to follow, and each one will let you control every detail of your event.";
fDesc[12] = ", recipes. This particularly program has a big working area, where you can work and open simultaneity different types of recipes, these recipes are classified by category, each category has its recipes.";
fDesc[13] = "jungle to kick some frog butt and reclaim his dinner!";
fDesc[14] = "Harvest Time Farms. It is a place that will allow you to feel the real essence of the season, and will remind you of the many things we have to thankful of. You will be able to see a beautiful farmhouse in the country.";
fDesc[15] = "party. The program features importing and exporting recipes, search by name or by main ingredients, and many more.";
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 = '...';
}
}