var fDesc=new Array();
fDesc[1] = "dinner, do a festival, have an appointment, enjoy a bowling alley or go to the music store. Also, they will have their own cars, which they can choose among various types and will serve them to go to any of the places named and also to work.";
fDesc[2] = "gems in order to score points and reveal a path for Samantha to follow. The main objective is to lead Samantha to the end of the path before time expires";
fDesc[3] = "their type,attack type and the level at which they can be evolved. With the money won, we can bet or purchase several items, such as POKéBALLS,Great Balls,Ultra Balls,Potions and Super Potions";
fDesc[4] = "for prince Albrecth who had disappeared. Unfortunately, Tristan’s people were massacred by the horrible daemons inside an underground labyrinth in their search for the prince.";
fDesc[5] = "includes new characters, new animations, new graphics and updated content. This all makes the game more enjoyable, if you needed to be. The Witcher enhanced version is THE game RPG fans should buy.";
fDesc[6] = "Frostcrag Spire in the game. A powerful mage lives there, and he entrusts it to the player's presumably capable hands. It provides everything a warrior could need: altars for summoning familiars and creating spells and enchanted items, and more.";
fDesc[7] = "acts as a camera we can use to view around at 360 degrees. We are Ash, a male trainer who can walk freely around the mini village, always followed by one of the Pokemon pets.";
fDesc[8] = "place in a magic laboratory. This Free downloadable game is developed by Media Contact LLC and distributed at GameTop.com.";
fDesc[9] = "adjacent tiles in order to set matches of three or more identical tiles, fill the entire grid before the time limit ends to qualify for the next levels.";
fDesc[10] = "potions to magical creatures in a tavern in the world of fairies. However, you will soon discover that the tavern is haunted, and you can not leave unfinished any of the shifts. Now you must respond quickly to all customers, if you want to be able to leave the tavern.";
fDesc[11] = "an apprentice to a wizard who is now missing, and you want to find some clues as to his whereabouts in his sketchbook, but it happens to be blank.";
fDesc[12] = "a fortune!";
fDesc[13] = "levels and two game modes. Use all of your puzzle skills to make potions that strengthen the butterflies. And guess what? It's even possible to play together in Mouse Party!";
fDesc[14] = "save the world from this powerful organization. Each battle will bring you different challenges, each enemy has different skills and powers so you must be careful when you enter a fight.";
fDesc[15] = "bravery can save them! In Runic Deluxe you smash down their prison walls and collect spells and magic potions through countless levels. You can use gold coins to buy extra powers in the Magic Shop. Have you got what it takes to be a hero?";
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 = '...';
}
}