var fDesc=new Array();
fDesc[1] = "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[2] = "your island and treasures from the pirates that attack it, firing you their own cannons from their ships and aerostats. You will aim your cannon with your mouse, firing it with the left mouse button.";
fDesc[3] = "find these items. This fun and challenging adventure will capture and fulfill your entertainment. If you get stuck use hints to help you find some of these stolen pieces.";
fDesc[4] = "types of living waterfalls from various places including on mountain, forest, cliff, and many more.";
fDesc[5] = "support the activities associated to the Digital camera and photography. Pennock's World has come up with PPR - Pennock's Photo Renamer, an amazing tool to rename as many files as you wish in just one go.";
fDesc[6] = ", you can hear the sound of rushing water. As you go on, the sound quickly becomes louder.";
fDesc[7] = "Just have a look at the Animated Screensaver \"Amazing Waterfall\". Don?t you think that a savage waterfall in ...";
fDesc[8] = "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] = "have a look at the Animated Screensaver \"Autumn Sunset\". Don?t you think that this cozy nook of the park on ...";
fDesc[14] = "beautiful screensaver? Just have a look at the Animated Screensaver \"Jungle Waterfall\". Don?t you think that a small waterfall in jungle is ...";
fDesc[15] = "as high as possible. But the cliffs are too far apart so you have to help yourself with a special bow.";
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 = '...';
}
}