var fDesc=new Array();
fDesc[1] = "car equipped with the most advanced weapons. Take a dangerous route destroying the enemies to finish first.";
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] = "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] = "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[6] = "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[7] = "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[8] = "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[9] = "Thirst for speed and danger makes the game more captivating. Join your counterparts from all over the world!";
fDesc[10] = "used to play them more than often. Sega Rally 2 was amazing because of the graphics, the maps, and the sounds. Now, SEGA Rally Revo is amazing because of the same things.";
fDesc[11] = "Prix. You can also choose the single race and quick start modes. The training mode will help you to improve your skills.";
fDesc[12] = "first. Thirst for speed and danger makes the game more captivating. Join your counterparts from all over the world!";
fDesc[13] = "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.";
fDesc[14] = "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[15] = "will have to snatch your life out of the fiery lava mouth and shift from scorching meteorites.";
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 = '...';
}
}