var fDesc=new Array();
fDesc[1] = "very accurate with D&D games. The dungeons are very well done and entertaining. However, this game might just appeal to D&D crowds, so try it first.";
fDesc[2] = "an exciting realm of magic and adventure, with a huge helping of laugh-your-butt-off. Dungeon Runners is FREE to download and play - check it out";
fDesc[3] = "puts you in command of Kane. After the dead of his son, Kane joins a group of elite mercenaries. When a mission goes wrong and the only survivor, Kane, takes the loot, he is sentenced to death.";
fDesc[4] = "precious works of art and treasures have been stolen and hidden around the world. Funkiball is a fun game that brick-busting games fans will fully enjoy.";
fDesc[5] = "more like-colored bubbles to clear them from the board before they reach the bottom. Unlock the mystery of Captain BubbleBeard in this swashbuckling adventure.";
fDesc[6] = "Evil, irony, humor... the occasions on which we can embody the figure of evil in a video game can be counted on the fingers of one hand, much less being in a fantasy world filled with elves, dwarves and henchmen, the real strength of an evil man of.";
fDesc[7] = "destroying threatening monsters and completing quests. At the same time, you compete with rival factions to see who will rule the city.";
fDesc[8] = "provides three modes of playing. In the Classic mode, you have to save your captain's loot; in the Mission mode, you are up against the five pirates of the seven seas; and in the Speed mode, the game play is super fast.";
fDesc[9] = "horses. Enjoy the adventurous spirit of the Wild West with this truly realistic setting and remarkable western music.";
fDesc[12] = "you. Are you up for the challenge? Looking for some adventures? Then what are you waiting for? Download this screensaver.";
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 = '...';
}
}