var fDesc=new Array();
fDesc[0] = "Duck is a very special bird that could cheer your moods without any efforts. Just look at the Hungry Ducks in this slideshow and you will see it yourself.
When they dive under water to catch any food you would hardly resist to feel just very good!
This screensaver is very relaxing, you get to see the ducks in their natural habitat.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}