var fDesc=new Array(); fDesc[0] = "Underwater puzzle game with two talking fish playing the role of secret agents. Another six creatures with unique abilities join the player's team in the course of the game. More than a hundred mind-boggling levels based on simple yet very interesting game mechanics. Colorful and animated environments, both underwater and on the shore. Interesting and funny story told via rendered sequences and witty in-game dialogues. Branching levels structure ensures the player can always continue with a different puzzle should he get stuck somewhere. Lots of bonus stuff to be found and unlocked by the player"; 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 = ''; } }