var fDesc=new Array();
fDesc[1] = "screensaver.You will surely enjoy a wide variety of animated nature sceneries such waterfalls, lakes, rivers, mountains, beaches, etc.This beautiful nature screensaver also comes with Water Illusion Studio to create your own animated picture easily. Features: Wide variety of living nature sceneries Use your own music files (mp3,wma,mid) as background music Weather effects (rain and snow) Change your wallpaper automatically with Auto-Wallpaper setting Get more than 200+ animated picture from our Gallery Create your own animated picture easily with Water Illusion Studio (included) Save your creation as Windows screensaver (.scr), animated gif (.gif), or AVI (.avi)";
fDesc[2] = "lake somewhere in the mountains. Nothing there can remind you about your work, the office, or the traffic. You will see pure nature around you.";
fDesc[3] = "birds and animals. The image of the trees and animals in the water is so nice and wonderful that everyone will enjoy it. The movements of the swan and other creatures look very realistic. An analog clock is displayed over each scene too.";
fDesc[4] = "you on a journey to some of the most beautiful sceneries in the world. You will be able to sit down and enjoy the view of a serene lake reflecting what is around them on the surface of the water.";
fDesc[5] = "immediately be transported to a beautiful lake somewhere in the mountains. It is a warm night, and you can listen to the sounds of nature. The lake is so calm, with a few gentle ripples, that you can see the reflection of the full moon and the mountains on the surface.";
fDesc[6] = "you a magic forest with a lot of trees, plants, lakes and much more. This unique screensaver combines the very realistic graphics of the lake, with many colorful animals that appear all around the lake.";
fDesc[7] = "to a beautiful cabin on the shore of a lake. You will be able to really relax and unwind listening to the wind, the sounds of the tree branches moving and the birds singing. This is the perfect setting to let your thoughts fly and forget about all your daily troubles and routine.";
fDesc[8] = "includes a complete list of titles which represent different missions for Nancy Drew to solve. In Nancy Drew: Ghost Dogs of Moon Lake, Nancy will be trying to solve the mystery of the Ghost Dogs of Moon Lake.";
fDesc[9] = "little pleasure! Download and install this amazing screen saver to your PC and you will find a magic world full of wonderful beauty and nice fishes living on the shore of the fairy lake!";
fDesc[10] = "relax watching the starry night sky over the warm waves of tropical sea, or the majestic mountain lake, or the calm waters of a wide river.";
fDesc[11] = "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[12] = "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[13] = "beautiful cabin on the shore of a lake. You will be able to really relax and unwind listening to the wind, the sounds of the tree branches moving and the birds singing.";
fDesc[14] = "place high on the mountains, where you will definitely forget about all your daily troubles. You will be on the shore of a crystal clear lake. Around you, nobody!";
fDesc[15] = "take you on a tour to the place where fairies live. You will be able to watch some really pretty scenes of a lake where fairies are supposed to inhabit. You will see day and night scenes, where you will definitely feel immersed in the beauty and peace that surrounds you.";
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 = '...';
}
}