var fDesc=new Array();
fDesc[1] = "its spectacular visual finish, which was built on the basis of the Essence engine. This game engine enables us to appreciate the battle from every angle imaginable with an amazing quality.";
fDesc[2] = "lost parts of the powerful crystal. Playing this game is very easy and fun, move with the arrow keys and tab to swim up and reach caves under the surface of the water. Be careful with your enemies and don't let them touch you, some can kill you.";
fDesc[3] = ", your adventure will begin after knowing that your grandfather left you a strange and old coffer. At the beginning of the game, you will see an explanation about an ancient pirate treasure, which had an unique artefact,";
fDesc[4] = "changed. Back in time, Lara was a group of polygons moving awkwardly around ugly-looking square levels. Now, Lara is a real woman, with real clothes that move and break.";
fDesc[5] = "saga. As you probably know, with this game you are going to travel to the ancient Persia, a land of adventure and magic.";
fDesc[6] = "via LAN or Internet providing endless re-playability. * New multiplayer features, including customizable squad colors, banners, badges, insignia and names, and the ability to ally with other players.";
fDesc[7] = "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[8] = "excellent production. Opposing Front is its so called expansion. However, the quantity of contents of this expansion is enough to be launched as an individual new game.";
fDesc[9] = "of real-time strategy game available for the enjoyment of RTS lovers. It is characterized by its original concept of replacing traditional armies formed by men for others entirely formed by robot animals.";
fDesc[11] = "cursed! Now it's up to you to solve brain-bending puzzles on your quest to reach the Temple of Time and lift the curse. Use your matching skills, unlock the talismans and make your way to the mysterious temple. Azkend Deluxe: a magical adventure of puzzling fun.";
fDesc[12] = "wonder. The relic your archaeological team uncovered is more powerful than originally thought. For starters, it's cursed! Now it's up to you to solve brain-bending puzzles on your quest to reach the Temple of Time and lift the curse.";
fDesc[13] = "in the SinSong Monks Monastery to find an incredible relic called the Heart of Tibet. It is said to possess magical powers.";
fDesc[14] = "PlayFirst.com. Plot: With this game you will travel to one of the most exciting places in the world, the Amazon. Dr Zeus Chaplin is looking an ancient object in the jungle.";
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 = '...';
}
}