var fDesc=new Array();
fDesc[1] = "downloaded maps of over 200 countries on your PC to a mobile device with Nokia Maps previously installed. You can use the Nokia Maps application on your device any place at any time.";
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] = "to negotiate business of all types, that range from museums to restaurants, including products stores and merchandising. With the new expansion new objects are included as well as styles for the decoration of places and needs of the Sims.";
fDesc[5] = "series! Restore shabby hometown restaurants to their former glory with Flo and her grandma.Meet six new customers, take reservations, and dress-up and train waiters.";
fDesc[6] = "Help Emily rescue her family's finances in five all-new restaurants, each with a unique menu and theme. Use your earnings to purchase decorations sure to make your customers smile.";
fDesc[7] = "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[8] = "restaurant at a time. It's up to you and SpongeBob to seat, serve and satisfy even the squirmiest of patrons. The game has 50 levels, 5 undersea restaurants, 2 modes of play and 5 types of customers.";
fDesc[9] = "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[10] = "delivery is capable to control all orders even at the time peak hours. Measurements shown that Delivery can control over than 100 orders in an hour. Modify the order item, add, remove or double an ingredient, to completely satisfy the client's desire in the most easier and fastest way. Send printed order to more than one position (kitchen, bar) following the sort order that is suitable to your needs, regardless the order items asked from the client. All items are categorized and each category can handle different printer as well as cash register machine. Specify the recipe for each item stating all the ingredients and price them. Download and extract zip file called Delivery.zip to your machine. Extract file on the root directory of your hard disk. Locate and run \"Delivery.exe\" and follow the instructions on the screen.";
fDesc[11] = "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[12] = "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[13] = "decorated the restaurant beautifully and will be serving delicious Christmas treats. This festive game consists of 2 game modes and 7 different restaurants. Roll up your sleeves and lend Emily a hand!";
fDesc[14] = "stores you want to include in your mall, from over 40 possibilities. You can include several levels, restaurants, arcades. Whichever you think your customers will like.";
fDesc[15] = "for a romantic supper. Hot Date also incorporates a lot of new objects that you can use to furnish your home , and as in the previous games, you buy each of these using the game's easy-to-use shopping and building interface.";
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 = '...';
}
}