var fDesc=new Array();
fDesc[1] = "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[2] = "era for gaming. This game first saw the light when it came out for the XBOX 360's opening. Gamers all over the world were thrilled by all you could do.";
fDesc[3] = "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[4] = "a team of worms and to fight against the other team. 3D graphics. Good sounds. Really fun. You can compete agains the pc or other player.";
fDesc[5] = "one of his trips to the Middle East and realizes that selling arms is not a good business for his soul. He develops a robotic suit that helps him fight foes left and right. The game features awesome graphics and many weapons that can be used from within the suite.";
fDesc[6] = "trouble. Like most Rockstar games, you control your character using the third-person perspective, and you can get on vehicles like Bicycles, Skates, etc.";
fDesc[7] = "the look and the sense of humor of the movie.This game follows the story of the movies (Dead Man´s chest and At world´s end)";
fDesc[8] = "wants to go to paradise, where his wife is waiting for him. He must fight against all kinds of monsters of the devil. In your search for the monsters, in each level of the game you will visit a lot of different places.";
fDesc[9] = "must hit, it will destroy some things (like bricks, or jelly fishes), and bounce against others towards you. You must avoid the ball to escape from the lower bottom of the screen, and catch the falling jewels and power-ups that will fall sometimes.";
fDesc[10] = "features wonderful graphics, well-made effects, and good sounds. For those who have never played this game, it is basically a fighting game in which Men and Beasts try to demolish each other using low-tech weapons and colorful spells.";
fDesc[11] = "also trolls, goblins, elves and more. Every so often, wars between the races broke out. And chaos reigned..";
fDesc[12] = "police catch you or you will go to jail and the game will be over. Enjoy this fun game and run fast to get control of all the territory. Collect guns and items to help you in your challenge.";
fDesc[13] = ", weapons and magical powers to defeat your opponents, through ascending levels (up to 75) in your category. You will gain money after defeating an opponent.";
fDesc[14] = "injected with nanotechnology, and are able to destroy anyone. All you need to accomplish this mission is your mouse and the enter key in order to attack, and a full concentration to avoid bullets or other dangers.";
fDesc[15] = "developers of the Cossacks series. It is published by CDV. The game action is developed between the fifteenth and nineteenth centuries in the Americas.";
fDesc[16] = "common at that time, they sailed the seas with their ships, and they stole gold from another ships.With this game you are going to travel to the eighteenth century, in the Caribbean.";
fDesc[17] = "You will choose a character that will represent you on the screen. Once done, you will fight against other 28 different Nintendo characters in a platform scenario.";
fDesc[18] = "Battlestar Galactica already has, at last, a game in which you will be a pilot of the fighter fleet in its fight for survival against the Cylon.";
fDesc[19] = "aliens. The story tells that a man was able to bring together other men and fight against them. Then that hero was killed but the human race realized that the war just";
fDesc[20] = "character) lives in a fantasy world, her name is Agavaen, she is a thief who lives with other thieves in the woods, but after a fight with her fellows she is on her own.";
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 = '...';
}
}