var fDesc=new Array();
fDesc[1] = "you will start relaxing with the soft light provided by lanterns hanging from the branches of the trees. Add some wierd sounds and noises to the scene, and you will be imagining your childhood fears.";
fDesc[2] = "clocks grow from the tree itself and every hour and half hour they sing their song. The images have high resolution, and the animation is so perfect that you will be immersed into a world of magic every time your computer is idle.";
fDesc[3] = "lush forest where a river falls down in the form of a magnificent waterfall. The entire surrounding scene is very well designed in 3D to allow you to watch a huge waterfall in all its splendor.";
fDesc[4] = "vegetation and a lot of inhabitants. You will be able to see apes, tigers, squirrels, and many different birds. But you will also be able to see the magical inhabitants of the forest.";
fDesc[5] = "screensaver? Just have a look at Animated Desktop Wallpaper \"Enchanted Forest\". In the amazing, fabulous forest among the lofty trees live ...";
fDesc[6] = "with fascinating transition effects and gives you a real effect of the falling water. You can also select from a great variety of scenes against which you wish you see the waterfall.";
fDesc[7] = "embark on a journey to the unknown. To the heart of the magnificent Rainforest. A place where nature spilled all of its blessings and crowded it with thousands of living forms of different species.";
fDesc[8] = "kinds of lush vegetation in many different shades of green. You are sitting on the shore of a small calm lake, surrounded by all kinds of plants.";
fDesc[9] = "journey to a place that you could easily get used to live in. You will be transported to a lush green forest in the middle of nowhere. The scene is totally relaxing. You will see a beautiful calm lake together with the stream that keeps water coming in.";
fDesc[10] = "a trip to a magical world of fantasy. You will visit a mysterious forest where probably fairies exist. You will be able to walk through the dense and lush vegetation, climbing over fallen tress covered with moss.";
fDesc[11] = "screensaver will take you to a place where few people, if any, have been before. You will be able to see a very nice waterfall that forms a gentle stream. Everything around it is green or full of the colors of spring.";
fDesc[12] = "you will see nothing but nature. Get ready to enter the magical world of the forest with all its inhabitants You ill be able to enjoy breath-taking views of the dense vegetation around yourself.";
fDesc[13] = "to watch a bright log fire that hardly illuminates the trees. The shadows and scarce light give them an eerie look, making them resemble goblins. Fireflies fly around you displaying colorful lights and leaving a trail behind. Or, are they really fireflies?";
fDesc[14] = "you to really relax while you watch the ripples on the water. You will also be able to listen to the sounds of birds, the water, even the wind. It will show you a very calm pond surrounded by lush green trees and other kinds of vegetation.";
fDesc[15] = "you on a journey to a place high in the mountains. A place where probably no human being has ever seen before. You will be transported to the middle of a lush green forest, where you will be surrounded by enormous trees.";
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 = '...';
}
}