var fDesc=new Array();
fDesc[1] = "motorcycle steering skills. Amazing realistic motion, complex obstacles, jumps and all these are in full 3D!";
fDesc[2] = "first. Thirst for speed and danger makes the game more captivating. Join your counterparts from all over the world!";
fDesc[3] = "your driving skills in difficult conditions. Realistic settings, various obstacles and all these are in full 3D!";
fDesc[4] = "Thirst for speed and danger makes the game more captivating. Join your counterparts from all over the world!";
fDesc[5] = "mechanical obstacles such as seesaws, suspension bridges, pendulums etc. You must overcome them to reach to the end of each level without dropping the ball.";
fDesc[6] = "first. Thirst for speed and danger makes the game more captivating. Join your counterparts from all over the world!";
fDesc[7] = "age or less that enables single players to use gaming skills to overcome obstacles and choreograph dance moves. This game portrays Barbie as the character of Princess Genevieve.";
fDesc[8] = "to guide the character while it shoots bricks and obstacles running around the screen and collecting its baby chicks. As in every brick-busting game, you will have power-ups, bonus worms and treasures that will fall over you as the levels progress.";
fDesc[9] = "if you see any obstacles like other cars or road blocks, you can maneuver or press the space bar on your keyboard to make the car jump and go over the obstacles.";
fDesc[10] = "and danger makes the game more captivating. Join your counterparts from all over the world!";
fDesc[11] = "ability and you reflexes. Shoot your ball and rebound it to strike and destroy all the obstacles in your screen. Once you clear your board your task will be completed.";
fDesc[12] = "finish first. Thirst for speed and danger makes the game more captivating. Join your counterparts from all over the world!";
fDesc[13] = "really fun. The main of the game is to drive the tank to the flag. There are in total 2030 levels. You have to take care about the obstacles that try to kill you when moving. Each level increases the level of difficulty.";
fDesc[14] = "obstacles that slow down the speed of the competitor, food in the road gives energy to run faster. There are 8 different competitors: horse, cougar, rinho, pig, sheep, bear, goat, and tiger. Each creature has different running speed, swimming speed, jump speed and strength.";
fDesc[15] = "hard curves, and even complete loops. Quantum particles usually travel at very high speed, and in this case, you will have to drive a small particle similar to a ball with two eyes called \"chromade\". Your target is to evade obstacles and do not get off the main road.";
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 = '...';
}
}