var fDesc=new Array();
fDesc[1] = "Racing\". Here you will become a driver of a nice sports car, and your mission will be to compete in illegal street races through big cities, and in this way, earn money, prestige, and make improvements to your sport car.";
fDesc[2] = "Explore 3 unique gameplay modes, with various bonuses and surprises.";
fDesc[3] = "training in which the player is going to be explained the idea of the game. When starting the real game the player will not have a rest and will have to pay attention all the time.";
fDesc[4] = "choose from many options to customize your characters such as gender, name, hairstyle and face. You can also choose a pet between a cat and a dog. This program has a good looking interface and it is really fun to play.";
fDesc[5] = "displays ads from our partners. It is easy to install and uninstall. It?s not spyware or malware and doesn?t come bundled with other software.";
fDesc[6] = "will keep you playing for hours. Something great about this game is that it combines the classical puzzle mode with an adventure going on on the screen.";
fDesc[7] = "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[8] = "cleaning tables, serving customers potatoes, nachos, beers, milkshakes and much more. Pay attention to their hearts which represents their patience, since you don“t want to loose them or you will be loosing money as well.";
fDesc[9] = "add new services to your salon; customers will love you and will bring their pets directly to your salon.";
fDesc[10] = "ignore traffic signs or knock down poles, the target of the game is to deliver as many passengers as you can and earn a lot of money.";
fDesc[11] = "punished you to work at the Yummy Drink Factory and serve delicious drinks to thirsty villagers as you work your way to freedom. You can unlock tasty new recipes and decorate your shop to keep your patrons happy to earn enough to earn your liberty.";
fDesc[12] = "decided it's time for Alicia to take over her chain of posh boutiques, beginning with one boutique. You must help Alicia to rule this boutique, and to earn enough money to receive the control over the whole chain.";
fDesc[13] = "1 side free, and which have no other tiles on top of them. Your second goal is to earn tiles. There are 27 tiles to collect, 9 bronze, 9 silver and 9 gold. You can download new tiles sets and choose what music to play during the game.";
fDesc[14] = "dollar each time. If you need help you can click the magnifying glass once for free, which reveals where a well-hidden item is, but after that you must pay $250 for each successive hint.";
fDesc[15] = ", rotate spinners, earn multi-balls and much more while breaking every block in sight. You can even collect power-ups and earn massive point combos!";
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 = '...';
}
}