var fDesc=new Array();
fDesc[1] = "zombies, which want to destroy your vision of happy future. It's real good continuation of Fallout 1/2. New adventure in the habitual environment and modern good-looking form.";
fDesc[2] = "Crystal Dynamics manages to improve it on almost every aspect of the original by rebuilding the game from scratch, but without taking away all the things that made it so special, such as its fantastic and hugely memorable level design.";
fDesc[3] = ", the owner of the house in which you’re staying at. Thirteen levels will lead you to the truth, gather clues on each investigation. Try this game for 60 minutes.";
fDesc[4] = "This amazing game developed by Media Contact LLC and distributed at GameTop.com offers the shooters fans frantic action within the stars.";
fDesc[6] = "combines the best ingredients of the third person shooters genre: accelerated races, destructive environments and deadly weapons. The story is based on a series of fighting games, where players can choose between eight gladiators.";
fDesc[7] = "unique monsters in the campaign of 43 levels. Enjoy devastating armament fitted into one of the awesome spaceships!";
fDesc[8] = "against enemy ships and evade many obstacles. This is a free game full of action and many visual effects that will make you spend good and fun moments in front of your PC.";
fDesc[9] = "earth collecting as many things as they can and grow into a mammoth sized creature to save the world from a deadly demon with the head of a fish.";
fDesc[10] = "60 wild species!";
fDesc[11] = "checkers variation), Polish Draughts (played on a ten- by-ten board) and more!";
fDesc[12] = "command in the fight to the end! Swim into a sea of contradictions as you drift into the shimmering blue, crystal clear waters of a peaceful Lagoon ...";
fDesc[14] = "eleminate the other derby contestants.";
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 = '...';
}
}