var fDesc=new Array();
fDesc[1] = "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[2] = "Games. Sid Meier's Railroads! represents the return of a classic after being revised and updated in its appearance and game options. The best rail simulator awaits you in this addictive title.";
fDesc[3] = "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[4] = "stunning 3D. No other software makes it as easy to create your own highly detailed tracks, stations, tunnels, towns, roads, level crossings and scenery. Ideal for railway enthusiasts of all ages, the only limit is your imagination.";
fDesc[5] = "to change it every day if you want to? Well Traffic Screensaver is one of those super customizable screensavers to use once and again and never get tired of.";
fDesc[6] = "The game is really fun, especially if you want to spend and share good moments with friends in front of your PC. Your mission is to guide the wagon through the correct paths in order to collect coins and earn points.";
fDesc[7] = "weapons like 3 slots wagon, 4 slots wagon, Rail Rockets, Emp, Bunker Buster Large & Huge Cannons and more.";
fDesc[8] = "find the best way to get safely to your goal. Search for valuable things and food to buy and sell. Drive your wagon in the best way possible.";
fDesc[9] = "white coat with either black or liver spots.";
fDesc[10] = "links on their website, Backup their website files (without server code) and Make their website much better to be crawl";
fDesc[11] = "stunning interactive websites.";
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 = '...';
}
}