var fDesc=new Array();
fDesc[1] = "of the game is to create matches of three in a row, by clicking on adjacent tiles to swap them. As you progress on the game, you’ll be releasing fishes. You can try this game for 60 minutes.";
fDesc[2] = "that needs to eat smaller fishes to grow up; likewise, we get points, bonuses, and pass on to next levels. The game becomes more and more interesting (and difficult) as we grow bigger and get to eat our old enemies.";
fDesc[3] = "4 unique tanks of action-puzzle adventure!";
fDesc[4] = "realism! Theses fish are actual 3D Models, not flat images dragged accross the screen.";
fDesc[5] = "and other sea creatures swimming very slowly above a colorful coral reef. At the same time, enjoy the realistic aquarium sounds including bubbles!";
fDesc[6] = "resembles an aquarium with fish swimming and playing around. Having such a saver is so relaxing. When I stumbled upon Dream Aquarium I was perplexed, but in a good way.";
fDesc[7] = "game is to eliminate pieces from a pile by selecting two pieces with the same drawing. To be able to eliminate pieces they can´t have another piece over them. Game ends when all of the pieces are eliminated from the pile or when the time runs out.";
fDesc[8] = "different reef tanks, with great backgrounds and a large variety of fish and corals. SimAQUARIUM can be customized and has great options.";
fDesc[9] = "watch different species of fish swimming in a salt or fresh water aquarium with the marvelous background and to listen to the calming sounds of waves and bubbles.";
fDesc[10] = "things, you grow, and become able to eat bigger fishes, provided they are smaller than you. You can join your counterparts from all over the world through Internet and beat your best score.";
fDesc[11] = "perfectly with realistic water and soothing music Koi Fish 3D Screensaver is the ideal door to a world of immense calm and relaxation, where you can escape from the daily worries at least during those precious moments of your break.";
fDesc[12] = "totally for free. So to play Fish Tales you only have to get it and install it. The rest will be just to follow the options in the menu. You will have to survive the dangers of the sea following the nature's law and fulfilling some easy tasks.";
fDesc[13] = "submerging to the coral reef below. With each meter that slips by, it becomes quieter and more peaceful around you. The mysterious kingdom of the sea uncovers all its beauty, only to you. Nothing troubles you now. Soft light filters through the water, tinting it with the various shades of blue and green. Fantastic corals are wondrously shaped and colored. It's almost like you are on another planet. Algae are gently swaying with the current. Peaceful, easy feelings fill your body. Air bubbles slowly rise to the water surface. Tropical fish inhabit the coral reef. They appear in every imaginable color, with fantastic shapes. They are swimming everywhere. Some are far from you, others very close. Fish movements are so realistic that it makes you think you are observing real living sea creatures. They swim and drift. Corals and plants bend and sway in the tide, all realistically reflecting...";
fDesc[14] = "to it. You will have to take care of your fish, supplies and customers in order to be successful. The game is really well done, but the concept will be appealing to some gamers and it won't for others.";
fDesc[15] = "by Big Fish Games have a common interface from which we can manage all the games from Big Fish Games that we have currently installed in the computer.";
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 = '...';
}
}