var fDesc=new Array();
fDesc[1] = "very realistic graphics that will provide all the different details to make Christmas a time to remember. The images are so realistic that you will be able to even feel the warmth of the flames as they rise in the air.";
fDesc[2] = "easy game to understand but a very hard and challenging adventure to win. Tricks mixed with bowling makes this game more interesting, you can use your bowling expert tricks to make lots of strikes.";
fDesc[3] = "catch the biggest possible number of gifts you will find scattered all over the way, in white paper bags. You can accelerate the sleigh, turn left or right, in order to pass just over the bags to pick up the gifts that you will later distribute among good children.";
fDesc[4] = "fall from the windows of a building. Equipped only with a candy cane, you must guide the falling presents into Santa´s sleigh. The presents can bounce on the walls of the buildings, but if they crash to the ground, they´re lost.";
fDesc[5] = "giving you some potions to be faster attending your clients. You should sell as much as you can to reach the goal of each task.";
fDesc[6] = "the gifts to the children in a small town. You will have to collect the gifts to deliver by driving the sledge with the cursor movement keys and throwing the gifts into the chimneys using the Spacebar.";
fDesc[7] = "principal character of this holiday: Santa Claus. That jolly old man who is in charge of bringing happiness to all the children. You will be able to see a typical and beautiful scene of a town with its houses covered with snow and decorations everywhere.";
fDesc[8] = "screensaver will take you on a journey to the North Pole, the place where Santa Claus lives. You will get a very close look at his house, so you can get an idea of how \"Mr. Christmas\" himself, celebrates the joyous day.";
fDesc[9] = "famous Santa Claus, he has a big problem and needs your help to solve it. One of his regular assistants made a lot of toys with an ugly smell, so Santa asked him not to work anymore, but this friend called Mr.Stink has another plan, he steals all the toys the day before Christmas!.";
fDesc[10] = "happiness of Santa Claus to your screen. You will listen to his characteristic Jo Jo Jo, as he flies by your home driving his sled pulled by the faithful reindeers.";
fDesc[11] = "you will be able to see how exactly are those toys built. You will watch all the jolly elves working hard to finish their task on time.";
fDesc[12] = "gifts into the houses. If you can throw the gifts right into the chimney of the house, you will get extra points.";
fDesc[13] = "to the North Pole to visit th place where all dreams are made true: Santa's Workshop. The place where hardworking elves live to construct all the toys and presents that Santa will deliver on Christmas Eve.";
fDesc[14] = "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[15] = "will allow you to feel the Christmas spirit all year long. The star of the show, of course, will be Santa Claus. The jolly old man that travels all around the world delivering happiness and love to every human being.";
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 = '...';
}
}