var fDesc=new Array(); fDesc[1] = "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[5] = "In this game you must serve people what they want as fast as possible. As you get through the stages you earn money. This money can be used to buy new machines, to increase the price of food, and to upgrade your restaurant to keep clients happy."; fDesc[6] = "have to hand him a menu. After a little while the customer places the order. You have to prepare the order and finally give it to the customer, everything as soon as possible. When the customer receives the order, pays and goes."; fDesc[8] = "game features colorful graphics with funny characters (Dora and her friends Boots, Backpack and Diego from the popular program Dora the Explorer), and great music and sound effects."; 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 = '...'; } }