var fDesc=new Array();
fDesc[1] = "enjoy this challenge in a battle against the thiefs of your treasures. Collect your treasures and ancient pieces to rest your soul and enter the after life.";
fDesc[3] = "that he will control. Apparently, he had an accident and died, finding himself in the afterlife limbo. Don't be scared to death, you will have a nice time with this ghost adventure.";
fDesc[4] = ", with Lucifer destroyed and Alastor claiming his throne, the story - told again through CGIs- is still very little original and offers nothing new, but will remain in the background.";
fDesc[5] = "Internet into your desktop? Is your wallpaper image obscured by different file types? (Can't see much of the image) Do you want to make customized text wallpaper fast? Do you believe in an afterlife? If all answers are yes you surely need DesktopXrganizer.";
fDesc[6] = "world from the forces of Hell, flying his hot air balloon into the underworld to battle ghosts and recover the holy Cruciforms!";
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 = '...';
}
}