var fDesc=new Array();
fDesc[1] = "I certainly believe there is no beating this year's FIFA. The most apparent change this year is the pace of the game. Everything has been tweaked so that the game plays considerably faster. The first time I noticed this is when the goalie gets the ball.";
fDesc[2] = "period. The game starts with a team of US scientists who are sent to an island in the south of China to investigate a weird phenomenon but face a blockade by the North Korean government. Needless to say, that is one critical situation.";
fDesc[3] = ", and now it is easier to control the ball more accurately in the desired direction. With new menus resembling Windows Vista, more goal celebrations, more technical gestures and, of course, mandatory improved graphics, Pro Evolution Soccer offers another choice to Soccer fans";
fDesc[4] = "game of historical empire building in which the player builds an empire from scratch. All full-time standard game starts in 4000 BC with a single settler, to build the first city, and an explorer or a warrior.";
fDesc[5] = "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[6] = "dark history of this New Yorker police detective who had to infiltrate with the worst criminals of the local mafia to find out about the death of his family.";
fDesc[7] = "Autobot Campaign and the Decepticon Campaign. The Autobot campaign consists in defending Earth from the evil Decepticons; on the other hand, The Decepticon Campaign consist in annihilating the Autobots and gaining control on Earth.";
fDesc[8] = "with the creativity of the developers.You will discover a world full of fantastic creatures and magic as the pure Japanese style.";
fDesc[9] = "Traveller's Tales and Amaze Entertainment and published by Lucas Arts and TT Games. It is based on Episode IV, V and VI of the Star Wars film saga";
fDesc[10] = "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[11] = "to give to the user the maximum realism as possible. If the first part took care of Mercedes, in this second part you will put yourself to the steering wheel of the vehicles of the Volkswagen brand.";
fDesc[12] = "Scrabble is maybe the most famous words game ever made, and it's back in this new interactive edtition. In this game every word counts. No matter if your are a beginner or an expert, by using this game you have the chance to sharpen your Scrabble skills for sure.";
fDesc[13] = "many new features, it contains over 20 marine animals. Undoubtedly, the Zoo Tycoon series is one of the most successful franchises in this area.";
fDesc[14] = "say that I am an Engineer. This game gives us a new challenge in each stage. In each stage there are several machines or elements fixed in the screen and some others that we can use as we want to reach a goal stated at the beginning of the stage.";
fDesc[15] = "focuses on the character that gives its name to these famous film, a small robot that after 700 years cleaning up the planet Earth, finds that he is not alone in the universe.";
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 = '...';
}
}