var fDesc=new Array();
fDesc[1] = "and other sea creatures swimming very slowly above a colorful coral reef. At the same time, enjoy the realistic aquarium sounds including bubbles!";
fDesc[2] = "you on a diving trip to the colorful coral reef where you will be able to see different kinds of corals, sponges and more. You can watch the rays of the sun filtering through the water, making you feel like you were really underwater.";
fDesc[3] = "your childhood's stories. Pure water springs give birth to the Charming Waterfalls. The sound of water splashing could be heard in the background while you could see the water falling.";
fDesc[4] = "abyss and enjoy the enchanting underwater scenes complemented by extremely realistic sounds of deep sea life in a full 3D environment with high-quality animations.";
fDesc[5] = "screensaver takes you back into the cretaceous and jurassic period and reminds you of these giant creatures that used to rule the earth at that time.";
fDesc[6] = "heights, they always create a sense of wonder that nature could form such a beautiful piece of artwork from mere rocks and water. Water is a good power! Life doesn't exist without water.";
fDesc[7] = "the opportunity to watch one of nature’s most magnificent creatures: the dolphin. Dolphins are considered some of the most intelligent animals in the world. And remember that they are not fish, but mammals.";
fDesc[8] = "clouds drift by and the meadow flowers bend in a gentle breeze. Download the full version of Living 3D Butterflies and watch your screen come alive with the beauty of spectacular 3D butterflies.";
fDesc[9] = "You find a stream running down the mountain. You start following it, enjoying the beauty of the scenery, while at the same time feeling very relaxed and at ease with the continuous sound of the stream as it flows over the rocks.";
fDesc[10] = "predators from the safety of your own desk? With Living 3D Sharks Full Screen Saver, you can! This stunningly realistic shark screen saver will make you feel like you're in the deep, dark ocean with this incredible animals.";
fDesc[11] = "personally liked most of all is the background music, it is very nice and relaxing. But, unfortunately, there is only one melody that sounds throug all the beach scenes.";
fDesc[12] = "and whenever you want. Just download one of most Realistic Virtual Fireplace Screensavers to enjoy realistic wonderful dancing flames Image to provide an unmatched elegant look of a real wood fire.";
fDesc[13] = "shows a snowy landscape with an igloo in the center of the scene. You will be able to watch as some little girls come out of the igloo to play in the snow. And you will listen to their giggles and laughter too!";
fDesc[14] = "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[15] = "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.";
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 = '...';
}
}