var fDesc=new Array();
fDesc[1] = "previous versions. Given the number of race days you need to win, it takes quite a long time to get to the end, thus making the game a little uninteresting. While graphics are realistic, ProStreet's audio isn't very good and this definitely makes the game not as good as expected.";
fDesc[2] = "car equipped with the most advanced weapons. Take a dangerous route destroying the enemies to finish first.";
fDesc[3] = "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[4] = "first.";
fDesc[5] = "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[6] = "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[7] = "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[8] = "racing game. You are not forced to go lap after lap, boringly getting to the finish line. The fun moments it produces are rather short-lived, but all games are short to a certain degree. This game is an action-stunt simulator, if you will.";
fDesc[9] = "and 2 great Australian tracks. The tracks are beautifully modeled and the cars look good too. It is free so every racing fan should check it out.";
fDesc[10] = "The release was delayed several times because of developing issues and the end product wasn't really polished in terms of design and functionality. However, it still managed to sell 2 million copies.";
fDesc[11] = "drive, this is your game. In this game you must drive a car in a very special space, you can see how your car explodes when you go out of the road.";
fDesc[12] = "bonuses will help you win and various difficulty levels will help you improve, participate in tournaments and win the grand prix.";
fDesc[13] = "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[14] = "including licensed cars of various types from NASCAR to Formula 1 and normal sports cars. There are also many different tracks, many different options to choose from and even the ability to make your own cars and tracks.";
fDesc[15] = "obstacles and must not forget of collecting the prizes that will help to win the race. Another thing to have in mind is that you have to deliver the truck to the base in time.";
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 = '...';
}
}