var fDesc=new Array(); fDesc[0] = "The object of the game is to shuffle your jellyfish towards the end of the board and land on the markers to score maximum points. You can even play head to head with a friend in the two-player mode.

Try to aim for the starfish that pop on the board: Blue starfish multiply your score, Yellow starfish awards you extra turns and White starfish wins you extra points, but watch out for those -10 scores. Use your mouse to control the strength of your push by lengthening or shortening the arrow. Click to slide your jellyfish."; 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 = ''; } }