var fDesc=new Array();
fDesc[0] = "Dive into the all-new game in the legendary Fishdom series! Submerge into the unique deep-sea world with your amusing aquatic buddies that will never let you feel bored! Take care of them; watch them play with each other, as you travel in time through different epochs. Decorate your fish tanks with over 150 exclusive ornaments and 8 immersive backgrounds. Enjoy 250 new Match 3 levels with perfected mechanics. Your pets are waiting for you, go check them out in Fishdom: Depths of Time!
8 new backgrounds and over 150 ornaments
Travel through time with your underwater pets
250 new match-3 levels with perfected mechanics
For a more in depth experience, check out the Collector's Edition";
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 = '';
}
}