var fDesc=new Array();
fDesc[1] = "is to make easier to play, convert and transfer music from your computer or portable mutimedia player, it even includes an online store to compete with Itunes";
fDesc[2] = "line, focusing on an experience of intense and exciting race.GRID focuses 100% in the race. GRID will take players to amazing racing places on three continents.";
fDesc[3] = "Racing\". Here you will become a driver of a nice sports car, and your mission will be to compete in illegal street races through big cities, and in this way, earn money, prestige, and make improvements to your sport car.";
fDesc[4] = "racing cars. Plot: You will have to compete in long, intense and complex circuits bypassing all your rivals, and of course, you will pass through all the usual dangers of such games.";
fDesc[5] = "simulation games is back. In DIRT you will compete with vehicles like buggies of all kinds, rally cars, trucks and many others. The only thing they have in common is their ability to completely get dirty.";
fDesc[6] = "while playing a game. Featuring good graphics and sounds, Saints & Sinners Bingo takes an adventure format in which you have to compete and travel on other venues what makes the game even more fun.";
fDesc[7] = "bonuses will help you win and various difficulty levels will help you improve, participate in tournaments and win the grand prix.";
fDesc[8] = "you. This is a free game where you will become a fearsome motorcyclist. This program is not exactly a motorcycle racing game, because you do not compete against other motorcyclists, but against all types of cars and vehicles along of a chaotic avenue.";
fDesc[9] = "brings the same realism that GTR offers, but with legendary cars of the 60s and 70s. Feel as if you were inside one of these racing cars, thanks to the game's powerful simulation engine.";
fDesc[10] = "most popular game variants, Snooker, 9-Ball and 8-Ball mode. This program will give you great emotions and fun, because PoolStars is not only a game, but also an emulator that will let you play exciting matches against other people over the Internet.";
fDesc[11] = "and Circuit Racing. You will compete against other computer opponents, driving your car using the keyboard or the mouse, you can choose between this controls. The game allows you to customize your character and every aspect of your car.";
fDesc[12] = "that has to compete against other motorcyclists and demonstrate his driving skills. So in this way, you will be able to win and enjoy this exciting game.";
fDesc[13] = "compete with others teams. You can place your players in the play field by selecting different formations. You can play in the Elifoot world manager league, obtaining rating and records worldwide.";
fDesc[14] = "Survive\". The game can be installed in English, French, German, Spanish or Italian. The object of the game is to win the race, destroying the other competitors´ cars.";
fDesc[15] = "opponents compete to become the best mage on earth. Opponents may be another human player, or the computer. Astral Tournament is thrilling and entertaining, requiring a careful analysis before casting a new spell.";
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 = '...';
}
}