var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = "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[4] = "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[5] = "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[6] = "engaging games. Download Smart Cook and Play for Free!";
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] = "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[9] = "game, since it turns you into a pizza chef cooking pizza for the impatient customers. You have to create matches with toppings and serve the customers as fast as possible. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[10] = "participating. Prepare delicious recipes and follow all the instructions the game will provide you with it´s hints and tips option.";
fDesc[11] = "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[12] = "is as fun as its prior version and has a totally redesigned scenario (fast food stand). You can try this game for 60 minutes before you buy the licensed version.";
fDesc[13] = "Children can choose among the seven different rooms within it and the backyard. In the babies´ room, children can learn several activities to entertain the babies like feeding them, making them play with toys or picking a story from the book to read them.";
fDesc[14] = "order and solve a puzzle the best way to select your costumers food. You must select a group of ingredients from the screen to complete each order.";
fDesc[15] = "succulent, fun and engaging games. Cherry Cook simple rules, intuitive gameplay and rockin' sound track!";
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 = '...';
}
}