var fDesc=new Array();
fDesc[1] = "way through the game into the end. Magic Balls 3.5 combines great graphics and lighting effects to create a 3D visual effect in the balls, so your experience becomes richer.";
fDesc[2] = "world with daemons, kings, queens and pixies. You become into a magic master who have to learn tricks, cast spells, and collect magic powders and stuff like that, in order to progress in your journey. You can try this game for 60 minutes or you can try it online.";
fDesc[3] = "through this beautiful world full of risky turns and joyful surprises.";
fDesc[4] = "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[5] = "solve the mystery that is hovering over the books in his Great Uncle Argus's library, which is causing their characters to act in a strange way. To achieve this, you must solve the each of the books' puzzles";
fDesc[6] = "also trolls, goblins, elves and more. Every so often, wars between the races broke out. And chaos reigned..";
fDesc[7] = "includes more than ten beautiful photographs and the possibility of transforming your own pictures into a new jigsaw game. The full version of Magic Jigsaw is absolutely free.";
fDesc[8] = "game was developed by Gas Powered Games and published by 2K Games. This is the expansion to the second half of a game which is not limited to repeating what has already been seen, but adds some new features to improve the original.";
fDesc[9] = "dangerous catacombs, you have to quickly catch the pets while avoiding contact with the evil creatures. Magic Pets is extremely fun and besides it has freeware license.";
fDesc[10] = "Magic Crystals to form a Scepter, an artifact that will give you super magic powers. To form a Magic Crystal, you´ll have to collect runes of the same kind.";
fDesc[11] = "faces) to the coming Snoods. If they form a group, they will fall, clearing the board. As you launch Snoods the Danger Bar increases and when it fills up, the screen moves down. If a Snood touches the bottom, the game ends.";
fDesc[12] = "locked the villagers up in mirrors. Help Iris to set her family and her village free. Find all differences in all the mirrors, before it's too late! But be careful! Rain, fog and poor light will hinder you.";
fDesc[13] = "place in a magic laboratory. This Free downloadable game is developed by Media Contact LLC and distributed at GameTop.com.";
fDesc[14] = "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[15] = "new clues that will help you solving the riddles written in the letter you received. Enjoy this great hidden objects game that will keep you focused.";
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 = '...';
}
}