var fDesc=new Array();
fDesc[1] = "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[2] = "first.";
fDesc[3] = "graphics and a lot of interesting routes will catch your attention to this game. Are you up for the challenge? Don't think it's so easy.";
fDesc[4] = "the settings and different alternatives for fun are excellent, you will never get bored. Choose your track and car for a single race or a championship and try to break all the speed records.";
fDesc[5] = "quality and variety reach a level never seen before. Cars, computer chips and game modes come together in a way which brought together all the good stuff of racing games. TOCA has come to the city...";
fDesc[6] = "storyline much attractive. You start being a nameless, faceless new racer who is trying to gain popularity in the city of Rockport. Graphically, the game looks great. Regarding sound, the game has amazing engine noises that change depending on which car you are in.";
fDesc[7] = "from but as you win races you will be unlocking the rest of the twelve cars available. There are also fifteen race tracks with different difficulty levels.";
fDesc[8] = "the moment and includes the Fiorano, the Scaglietti and the 430 Scuderia. It has good graphics and options. A good, fun choice for Ferrari fans.";
fDesc[9] = "Gameplay: In this case, the novelty is that you must avoid the attacks coming from the others competitors, and and being the first is not as good as it looks like because you will be an easy target to destroy.";
fDesc[10] = "Prix. You can also choose the single race and quick start modes. The training mode will help you to improve your skills.";
fDesc[11] = "Arts. This racing game offers a wide variety of cars to be used in racing. The car upgrades include both visual and performance enhancements that make the game rather interesting and worth-playing. The roads to race in Need for Speed Underground are visually interesting and well designed.";
fDesc[12] = "careening through the streets of major cities is a bit more of thrill. Midtown Madness lets you chart your own path as you race your friends through the streets of San Francisco.";
fDesc[13] = "and distributed by Valve Corporation through its Steam service. This amazing add-on pack brings a lot of new and most beautiful GT Cars and their production variations to the original game.";
fDesc[14] = "graphics and physics are excellent. However the developer of the game, SimBin, has already released the newer evolution of the series.";
fDesc[15] = "chance to race single seater and track day sports cars. With great graphics and physics, this game looks and feels like the real deal. It is an excellent choice for all racing fans.";
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 = '...';
}
}