var fDesc=new Array();
fDesc[1] = "of time travel that we are used to. Instead, it is more of a mental, inner journey to the past of the main character's ancestors. You play him, the main character.";
fDesc[2] = "versions. The main difference is that the game is done completely in 3D and allows a total control of the camera, and may change the angle of vision, getting closer and farther from the details of the adventure map as well as during the battles.";
fDesc[3] = "you expect. This game includes shooting, fire, weapons and equipment, special effects, intense battles, worthy adversaries. I think you won’t be bored, as you are waited for different surprises and real challenges.";
fDesc[4] = "emergence of Shaddar and the demon of Shakkara. Of course, that you will be part of the eternal struggle between good and evil. You are going back to the Ancaria kingdom.";
fDesc[5] = "Gothic 3 put you in the foots of a hero without name, who has the ability to be a warrior, an archer or a wizard. Plot: The major character comes from the seas to the kingdoms of the continent, where the Orcs have invaded almost every human";
fDesc[6] = "originality of the show that makes Legends. You are going to travel with this game to Europe of the Middle Ages where the life of its people passed through the castles.";
fDesc[7] = "pilot and you will have a lot of races to win. Plot: Before to start playing you will see the classic difficulty selection screen, which varies with the ease of the car for damage and broken.";
fDesc[8] = "totally for free. So to play Fish Tales you only have to get it and install it. The rest will be just to follow the options in the menu. You will have to survive the dangers of the sea following the nature's law and fulfilling some easy tasks.";
fDesc[9] = ", and only a handful of men and women who become modern Templars fight against the hordes of monsters that try to destroy the little thing that remains of what we called London.";
fDesc[10] = "through Bikini Bottom in this game, where you can play with another three players, impersonating your favorite characters (SpongeBob, Sandy, Squidward or Patrick).";
fDesc[11] = "a medieval world of fantasy and role-playing game. Plot: In a kingdom that had everything you should have: peace, happiness and prosperity, the King did not have children, then they prayed to the gods to give them that blessing.";
fDesc[12] = "development of the storyline takes place within the continent of the Hyborian kingdoms. The art design in this game is really fantastic, and particularly the sound is essentially flawless.";
fDesc[13] = "you will be a ble to enjoy a genre fusion of first-person shooter, fighter, and stealth adventure. In this thrilling adventure game you are going to play the role of the felon Riddick, who is one of ther most wanted men in the universe.";
fDesc[14] = ", let’s you know that the game is related to the food business. Actually, you’re gonna be representing SpongeBob who will be playing the role of a waiter, doing his best at serving customers in his dinner.";
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 = '...';
}
}