var fDesc=new Array();
fDesc[1] = "expansion for Fable which presents all the content found in the original with the addition of such new features as monsters, weapons, alignment based spells, items, armour, towns, buildings, etc..";
fDesc[2] = "download the associated file. In Wizard101 you will have to collect magic cards, learn how to make spells and take part in wizard duels.";
fDesc[3] = "Faerie Queen’s Magic Jewels! Cast magical spells to battle ruthless monsters and the forces of darkness in your quest to recover the Queen’s glittering treasures!";
fDesc[4] = "spells. Once installed, spells vary in power, and include both new spells and existing spells. The extremely powerful spells are balanced and cover almost every basic spell. There are many new spells added, which include high level spells as well as low level spells.";
fDesc[5] = "game. The idea beneath the game is that Eveline the Wise will have many questions for you, and you’ll have to answer them all by solving different puzzle games. The Realms of Etheria is the scenario of the story.";
fDesc[6] = "better deal with mundane problems. Among the spells we find some to help in the domestic tasks, to transform garden gnomos in gardeners or decorative flamenco in attractive maids, to hypnotize another Sims or even to convert a problematic neighbor into a frog.";
fDesc[7] = "also trolls, goblins, elves and more. Every so often, wars between the races broke out. And chaos reigned..";
fDesc[8] = "expansion pack to Shadows of Amn. The game draws the Child of Bhaal saga to its dramatic conclusion. It is bundled with 30-50 hours of game play, 80 new areas spread across a dozen adventure areas,";
fDesc[9] = "universe. Plot: In this game you will be able to create your own character and define all his or her skills: if you're a warrior, you will have to choose different weapons, if you're a wizard, you must choose the most powerful spells.";
fDesc[10] = "arrange all the stones by color in a single shot; you will even be able to destroy a whole area of stones by casting a spell.";
fDesc[11] = "plunged into darkness and could certainly use some light. Collect magic spells. Earn amulets which will give you the power you need to return the beautiful twinkling light to the woods.";
fDesc[12] = "going to travel to a world with a lot of books, spells and of course, a lot of puzzles. The character you will take control of is the same one you could find of the previous game, his name is Titus, but this time you will help him to find an evil creature which is hidden among the enchanted books.";
fDesc[13] = "identical symbols twisting horizontally or vertically two adjacent items, forming groups that will vanish, leaving the space they occupy free.";
fDesc[14] = "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?";
fDesc[15] = "your lieges to defeat your opponents.";
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 = '...';
}
}