var fDesc=new Array();
fDesc[1] = "the world. The player can choose between 9 different off-road vehicles depending of his driving characteristics. In this game there are two game modes, arcade mode and championship mode.";
fDesc[2] = "Super Fun Classic, Find the monkey, Leisure and Puzzle. This sequel of 5 Spots I is great as it not only brings new images to the classic mode game, but also completes the game with new additional game modes.";
fDesc[3] = "existence of different items that enhance the game. For example, in the first stage there is a cannon. We must lead the golf ball to a hole near the cannon, and then we can aim the cannon and shoot the ball towards the hole.";
fDesc[4] = "Katana DA-20 X (FSX+FS2004). You get to experience the complete flight dynamics and the real sounds in this add on. Extensively used for training new pilots and also used for sightseeing, this is a very light weight aircraft.";
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 = '...';
}
}