var fDesc=new Array();
fDesc[1] = "flash based massively multiplayer online role-playing game (MMORPG). Its concept is mainly that of a tactical game featuring wild humor but with a unique style if we compare it with other MMORPGs.";
fDesc[2] = "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[3] = "published by Atari. Inspired by the writings of Andrzej Sapkow, the Polish writer, The Witcher is a title in which a warrior will face some monstrous beings known as the \"werewolves\".";
fDesc[4] = "gives you a fantastic plot set in medieval times in a vast region divided between a corner of shadows beneath the earth and a splendid sunlight place. In this amazing game, you will enter the two worlds.";
fDesc[5] = "accepted to “Caregivers International”, a company that provides healthcare and in which you’ll be working as a maternity ward nurse. You’ll have to feed, burp, bathe, change the diapers and soothe the babies.";
fDesc[6] = "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[7] = "like that. You need to keep tables stocked. When customers don’t buy what they’ve tried on in the dressing room, you have to pick it up and put it back in the tables. The customers who find what they want will go to the cash register to pay.";
fDesc[8] = ", tell stories, create your own world and meet interesting people from all over the world.";
fDesc[9] = ", scripts, and 3D graphics. The game has a special emphasis on adventures and on the free personality development of each player.";
fDesc[10] = "surprise you a lot. This is an innovative MMORPG (Massive multiplayer online role-playing game) game that manages 2D graphics, and its objective is to create a vast online interactive world, so all the players can play freely through Internet.";
fDesc[12] = "adventure, as the game strongly depends on the way we develop our character. After some minutes playing we will be inmersed in the story of the game.";
fDesc[13] = "castle before he destroys you. It has hundreds of fantasy units, heroes, items, and spells to assist you in overcoming your enemy";
fDesc[14] = "story and lots of texts to read, but the graphics are very simple, and a bit childish. In Aveyond you misteriously meet a dying woman who leads you to a quest to avoid that the evil forces take over the world.";
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 = '...';
}
}