var fDesc=new Array();
fDesc[1] = "what they want. You must cook and prepare everything they want so as to be paid. When you got money enough you'll be able to buy new machines that will increase the number of items in your menu. This will complicate the task but you'll be able to earn more money.";
fDesc[2] = "new restaurants. Unlimited, unrestricted gameplay, 50 new story mode levels, 6 new customers, take customer reservations, train new waiters for each restaurant.";
fDesc[3] = "satisfy all of your clients to get money and grow in the business. The game is really easy to be played, you control it all by using your mouse. You will have to take orders, clean dishes, take the orders to your personal chef and deliver the food to your clients.";
fDesc[4] = "your neighbors efficiently. The game includes 3 different modes: Speed, Memory, and Simon says. The three of them offers a different game play, although you're essentially doing the same thing: picking orders and dropping them on the corresponding restaurant.";
fDesc[5] = "following the orders of a mysterious agency. The game includes more than 20 missions in all, which you'll play in a linear order, one after the other.The graphics of this game are great enough and particularly the sound has been improved so as to make it really enjoyable.";
fDesc[6] = ", and collect tips. You must help the restaurant owners to collect the money needed to pay their rents to Mr. Big, who wants them to fail because he wants his big restaurant to be the only one in the city.";
fDesc[7] = "will be able to have some help achieving success with her restaurant. The player can choose between two game modes: City to City and Day In, Day Out.";
fDesc[8] = "burgers, and adding theme cheese, tomatoes and other fixings in groups of three or more. You´ll get more money if your clients are satisfied, so it´s important to keep them happy.";
fDesc[9] = "contact with the customers. What you have to do is to locate the correct ingredients in the kitchen and click on them. This can be harder than it sounds because the kitchen you are working at is a real mess.";
fDesc[10] = "restaurant, striving to obtain a 5 star rating. You´ll have to cook multiple dishes at the same time, and invent creative recipes of your own.";
fDesc[11] = "customers, take orders, and perfectly prepare a variety of dishes in more than 50 levels of fast-paced fun. Cooking Dash Deluxe is delectable fun for the whole family.";
fDesc[12] = "customers happy. You have six stations to prepare the orders: Sauce station, Flavors, Shapes, Ingredients, Toppings, and Infusions. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[13] = "matches on a board). You prepare the customers orders by collecting the required ingredients from a board. Every time you make a match, the ingredients involved are collected to prepare the order.";
fDesc[14] = "unlimited game time. The game starts with a short story of a man that needs to start working in order to earn money. He has the idea to start working in a delivery service, and that is when the game starts.";
fDesc[15] = ", Inventory, Purchase Orders, Sales Orders and Quotes, Sales Analysis, and Bank Reconciliation.";
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 = '...';
}
}