var fDesc=new Array();
fDesc[1] = "airplanes, the improvement of the multiplayer support , including the possibility of two players flying a single airplane, and the occupation of the control tower. The 11.0 version brings some improvements and enhancements to the already successful flight simulator.";
fDesc[2] = "reveal beautiful photographs. You can also download more images or add your own. You will be given puzzle pieces on a loading dock and you must click to use them into the car one at a time without leaving any gaps.";
fDesc[3] = "beginning, but as you keep on advancing you will notice that the difficulty will increase. The game has great graphics, nice music and sound effects and is very funny and entertaining.";
fDesc[4] = "is a fresh incursion into the railway simulation genre and an opportunity for lovers of trains and stations to meet their requirements for entering the cabin of one of these transport vehicles.";
fDesc[5] = "thrilled with the views you are about to see. You will visit a beautiful small western town located somewhere in the West. Delight yourself watching the train station and the mining facilities of that time.";
fDesc[6] = ", rapid-fire math equations as fast as possible, and many other easy but interesting and helpful games.";
fDesc[7] = "will have to collect the wagons placed on the scenery, but without crashing against them. In this amusing game, you will live a funny adventure; you'll become a driver of a little train, and depending on your driving reflexes, you will advance to the next levels.";
fDesc[8] = "station, where the player must observe all the directives, follow the signals indications and control the train. Score depends on how the engineer drives the train, and penalties are applied when the driver goes faster than the speed limit shown in a signal or a stop signal is passed over.";
fDesc[9] = "you there. Longer words make more fire to help you beat the opposite train. Get stoking now! And be sure to have lots of free time ahead!";
fDesc[10] = "trains that will run accross that layout. The user can plan the tracks situation, switches, gates, the whole layout, set buildings, industrial plants, lights, persons, cars, set the terrain characteristics, platforms, elevations, plants, reliefs, railway elements, etc.";
fDesc[11] = "Murder on the Orient Express is the new game of this series developed by The Adventure Company. This time the designers stressed the expressiveness of the characters, something which you certainly will appreciate.";
fDesc[12] = "by a magic wall. And, in order to do that, a little train will be your main weapon. A lot of sly enemies will try to get in your way, so you will have to be careful and avoid hitting them.";
fDesc[13] = "of fun waves. Unlike any other mind or memory game it will not let you bore with Amazing Brain Train game. Its highly graphical and animated interface can impress anybody. It will help you to stick with brain drilling exercises.";
fDesc[14] = "forest. The scene is really well designed, and it shows some interesting details, like the snowed pines and trees, and a beautiful view of a pine forest on a slope.";
fDesc[15] = "so that the train does not derail or run into the edge of the scenery. There are three difficult levels to keep things challenging, and the game is very addictive.";
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 = '...';
}
}