var fDesc=new Array();
fDesc[1] = "her business running. Your task is to make sure she does all her work and provides the farm with money. You will have a place at the market where you can put all your food for sale.";
fDesc[2] = "and will captivate you while you are playing. The game consists in a bunch of words mixed up on the screen that you will have to find to get points.";
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] = "beginning, but as you keep on advancing you will notice that the difficulty will increase. The game has great graphics, nice music and sound effects and is very funny and entertaining.";
fDesc[5] = "try to solve the puzzles and join the figures on their places. You will have to connect some twigs to get the original pattern.";
fDesc[6] = "select your question before time is up. Answer different questions correctly and rise the level of a ladder meter in your screen, think fast and if you don't know the answer you better remove it, each bad question will make the ladder fall.";
fDesc[7] = "case you don't know the previous game, your goal is basically to fit a specific number of different pieces into a board with the shape of animal. You can rotate the pieces, but you have to very fast.";
fDesc[8] = "very well-known format. The game consists in getting more than three balls of the same color together, once you do that all of the balls with the same color will disappear, but hurry up, because they will all go down, and when they touch the floor you will have lost the game.";
fDesc[9] = "Granny needs to run, dig, climb, swing, float and tumble through 5 worlds and over 170 levels to rescue her cats from Dr Meow. You control the Granny by using the cursor movement keys to go up, down, left or right, and the spacebar to dig.";
fDesc[10] = "trade exotic island goods, amassing wealth and power. Earn enough gold to upgrade your ship and engage in land and sea battles.";
fDesc[11] = "think and keep you up playing and learning for a long time. There are two different modes to play. The twister mode or the quizzler mode. The twister mode will show you a sentence with a blank space you will have to complete with the letters it shows you.";
fDesc[12] = "easy to use and is quite addictive. It has got some good visual effects as well as good music and audio effects.";
fDesc[13] = "amusing and it has got an entertaining storyline. The main objective of the game is to get as much clients as you can, in order to do that you will be able to use many upgrades.";
fDesc[14] = "all ages. The game is very easy to play, you play it just with your mouse. You will have instructions that will guide you on how to get yourself through the levels. You will have to advance from level to level searching for different objects.";
fDesc[15] = "your computer playing it for hours. The game is very funny and amusing, you will have to go along Panda in different stages defeating enemies to reach to the end of each level. In your way to the final, you will collect different items that you will be able to use at any moment.";
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 = '...';
}
}