var fDesc=new Array();
fDesc[1] = "watch how the leaves of the trees start changing colors until they finally begin falling. The screensaver will show you several paintings displaying gorgeous autumn scenes with animated characters.";
fDesc[2] = "are typical of this season. You will be transported to a beautiful park, with a gentle stream that crosses it. The first thing you will notice is color. Everything around you has a different shade of yellow, red or brown.";
fDesc[3] = "standing yellow, red and orange, leaves rustling under your feet, chilly air and the rippling water of the river that reflects all this beauty with different shades of color.";
fDesc[4] = "to a beautiful lake in autumn? You can watch all the trees changing the color of their leaves and then dropping them to the ground. You will be transported to a secluded lake in the middle of a forest, where the trees will form a curtain of many shades of reds, yellows and browns.";
fDesc[5] = "features about sixty high-resolution photographs, with the prettiest images of autumn days. Most importantly, Joys of Autumn is absolutely free.";
fDesc[8] = "unique beauty of gold autumn forest in any time of the year. Good animated graphics and realistic sounds of birds’ songs help you feel outstanding autumn atmosphere.";
fDesc[9] = "and crisp breeze makes you wish it could last forever.";
fDesc[10] = "screensaver? Just have a look at Animated Screensaver \"Autumn\"! The autumn forest is beautiful. The leaves, which used to be green, change their ...";
fDesc[11] = "where you will be able to watch a magnificent sunset standing on the edge of a cliff overlooking the ocean. In the horizon, the sun is sinking very slowly, creating shades of colors that are just unbelievable.";
fDesc[12] = "autumn forest, brightly colored and calm.";
fDesc[13] = "color. Comes with a Screen Saver Control which makes it easy to configure and launch any installed screensaver.";
fDesc[14] = "the wonderful scenery of nature in its purest form. The freeze of winter, to the warmth summer, to the leaves of autumn and the new life of spring.";
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 = '...';
}
}