var fDesc=new Array();
fDesc[1] = "employed for a TV show production. This fun and easy-to-play game turns you into a very busy waitress trying to keep the customers happy, and that could get more difficult than it sounds. Try this game for 60 minutes before you buy the licensed version.";
fDesc[2] = "ingredients in the kitchen, to cook the recipe that the game shows to you. You can try this game for 60 minutes before you buy the licensed version for only 19.95 dollars.";
fDesc[3] = "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[4] = "many different recipes. This game will challenge your speed serving different plates and satisfying your costumers.";
fDesc[5] = "stages which are called challenges, as we must prove ourselves as top chefs. In each challenge we must create different recipes in a limited time. To create a recipe you must follow some steps. In each step you must use different flavors that must fit the ones required by the judges.";
fDesc[6] = "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[7] = "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[8] = "to open a cooking school. Graphics are colorful and sounds are really pleasant to your ears. You will have a good time with it.";
fDesc[9] = "must choose a player, or create a new one. Then, you can choose to play in the Adventure Mode (when you struggle to become a 5 star cheff) o A La Carte mode (where you´ll have to run endless shifts till you lose).";
fDesc[10] = "the place and will learn how to prepare them. Hot Dish is a multitask game, just like real life cooking is. This is what makes this game really entertaining and kind of difficult to play. Keep focus and try no to loose track of the several tasks going on.";
fDesc[11] = "different items which are written in a list. In each stage we have a list of 15 items to find in the shown picture. In each stage we must complete the list of items before time runs out.";
fDesc[12] = "nutritional information. Other features include ingredient database, grocery lists, web integration, import and export, and more.";
fDesc[13] = "to use their own recipe collection in a digital cookbook. This digital storage, will allow you to save, print, email your recipes, you can include images if you feel like it, and you will have the option of color schemes. Its supports English and Spanish languages.";
fDesc[14] = "cookbooks. It also lets you create menus for daily use or for special occasions, and contains many useful features.";
fDesc[15] = "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!";
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 = '...';
}
}