var fDesc=new Array();
fDesc[2] = "left without presents! Help Santa stock Christmas gifts by loading trains passing through towns. Christmas depends on it!";
fDesc[4] = "right chimneys before dawn.";
fDesc[5] = "beautiful, Old World look-and-feel. Free version is fully functional, with no registration required. More features in full version.";
fDesc[7] = "expectation of a big holiday. Postpone everything for a bit and enjoy the Christmas spirit. Ho-ho-ho!";
fDesc[8] = "screensaver will take you to a forest during a snowstorm. But don't worry. It is not a blizzard. It is just a nice and gentle snowfall with thousands of different shaped snowflakes. You will be able to watch as the pine trees get covered with snow, as well as all the ground around you.";
fDesc[9] = "rescue Santa's magic items. The game is mainly oriented for kids, since adults may find it a little bit boring and slow-paced. It features nice but not detailed graphics with appropriate music and sound effects.";
fDesc[12] = "from Grey Alien Games - it's slicker than Santa on an icy roof!";
fDesc[15] = "hours. Get your free download now and try it out for yourself!";
fDesc[16] = "to the Christmas. It's important to believe: Christmas wishes always come true.";
fDesc[18] = "show the true atmosphere of a white winter.";
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 = '...';
}
}