var fDesc=new Array();
fDesc[1] = "realism! Theses fish are actual 3D Models, not flat images dragged accross the screen.";
fDesc[2] = "and other sea creatures swimming very slowly above a colorful coral reef. At the same time, enjoy the realistic aquarium sounds including bubbles!";
fDesc[4] = "effects and realistic animations of colored fishes in their tanks. It includes about fifteen different colored fishes, superbly illustrated, and with amazingly realistic animations.";
fDesc[5] = "fascinating and mysterious sharks. It features wonderful animations, realistic 3D graphics and great underwater scenes and sounds to let you fully enjoy the experience.";
fDesc[7] = "logos on a cut piece of translucent crystal nestled in the coral. This aesthetically beautiful version can promote your company, reward your employees and will be the most creative corporate gift ever.";
fDesc[10] = "and other marine creatures of every color imaginable. You will be able to watch all kinds of different fish swimming around the place, sometimes lowly and sometimes very fast as if playing, or escaping from a bigger animal.";
fDesc[13] = "will let you enjoy the peacefulness of an aquarium while it gives you the correct time. The clock itself is different to what you have seen before. Its hands will resemble some kind of aquatic creature that bends and moves as they travel around the face of the clock.";
fDesc[14] = "and beautiful underwater creatures will populate your desktop.";
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 = '...';
}
}