var fDesc=new Array();
fDesc[1] = "Christmas tree in the middle of a room. It shows a close-up view of its branches. Every branch is beautifully decorated with stars, angels, bells, and more.";
fDesc[2] = "island, in the middle of a lake. Maybe you have walked for a long time looking for the tree and, when you finally find it, you just stay standing there watching in awe. You can feel the magic and the mystery all around you.";
fDesc[3] = "Screensaver! You won’t regret it! Everyone knows that the Christmas Tree is the most indispensable attribute associated with this huge celebration, and it is really hard to imagine this wonderful holiday without it.";
fDesc[4] = "traditional Christmas tree, the one showed in this screensaver is decorated with colorful ornaments, lots of presents around and plenty of lights that will give your desktop a really nice look.";
fDesc[5] = "and color. Menu allows to change lights into rays and spirals, set their position and cones. You can play mp3 music";
fDesc[6] = "with an island in the middle. And on the island, as a vigilant statue vibrant with life, stands the old oak tree. People say that only on this night, the tree will grant wishes to everyone that walks beneath its branches.";
fDesc[11] = "Cherry Flower. Prunus serrulata, the Japanese Cherry is a species of Japanese ornamental cherry tree in the rose family Rosaceae.";
fDesc[12] = "images of nature.";
fDesc[14] = "decorated with holiday lights. Don/t you think that Christmas is an amazing and unique holiday, which cannot be compared to any";
fDesc[15] = "approaching together with the enchanting pictures!";
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 = '...';
}
}