var fDesc=new Array();
fDesc[1] = ", adventure and role, to offer the player a universe where evil is the key to success. Are you prepared to be the new lord of evil?. In this game you must embody illustrious and armed Overlord.";
fDesc[2] = "in a fantasy world, where you will control a character with his own characteristics for the fight. The goal is to defeat your enemies. Plot: The characters can be elves, humans, dwarves, mages, orcs and trolls.";
fDesc[3] = "Explore a secluded region of Ashan populated with fearless orcs, savage goblins, dreadful undead, elusive trolls, massive dragons and many other creatures that defy nature's creation in both size and cunning.";
fDesc[4] = "his quest to gather the mystical light crystals! Zamby is filled with hours upon hours of captivating brain training puzzles.";
fDesc[5] = "and sound. The scenarios become full of life and colour, the designers have paid much attention to the design of details, the shadows and light effects are very good.";
fDesc[6] = "underworld. You will be able to see the castle where all the evil forces reside. The place is very gloomy with fire and lava all around. Some really creepy music and sounds will help complete the scene.";
fDesc[8] = "control of Grizzly's forest and driven the creatures completely mad.";
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 = '...';
}
}