var fDesc=new Array();
fDesc[1] = ", therefore Infinity Ward released patch 1.6. The patch includes 4 new and excellent multi-player maps, along with new features for filtering and several bug fixes.";
fDesc[2] = "realism! Theses fish are actual 3D Models, not flat images dragged accross the screen.";
fDesc[3] = "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] = "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[6] = "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] = "under the ocean and destroy mad machines that are throwing dangerous and toxic waste to the ocean. Shoot and place balls in groups of identical color to stop this toxic and dangerous train. If it reaches the limit line you will lose.";
fDesc[8] = "Digs and Marine Mania for the players imagination to fly free while they are taking caring for more than 100 land, seas and extinct creatures in the most amazing and realistic possible way.";
fDesc[9] = ", Predator, or a human Colonial Marine. Each character has different objectives, abilities, and weapons at their disposal. The single-player campaigns present the player with conventional series of levels to progress through that are designed around the abilities of each character.";
fDesc[10] = "many new features, it contains over 20 marine animals. Undoubtedly, the Zoo Tycoon series is one of the most successful franchises in this area.";
fDesc[11] = "soon as you watch the first few seconds of it in action. You will be able to see the bottom of the ocean, at some shallow place where you can see the rays of the sun piercing through the water, creating some awesome effects.";
fDesc[12] = "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[13] = "diving equipment and take you on a journey to the depth of the ocean. Don’t be alarmed. The underwater world is not scary or menacing. On the contrary, it is a world of peace and beauty that you will definitely enjoy with this software.";
fDesc[14] = "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[15] = "types of salt water fish elegantly make their way through the fascinating world of the coral reefs.";
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 = '...';
}
}