var fDesc=new Array(); fDesc[0] = "In Slumberfish your goal is to guide a red ball to it’s goal using the sleeping sea creatures around it! Clicking a jellyfish will wake it up and cause it to jump upward, knocking the ball upward as well. Clicking an orange fish will wake it up and make it dash forward, knocking the ball to the right. Green fish knock the ball to the left, starfish can throw the ball in any direction depending on their color, etc. As the levels get more advanced, puzzles make use of whirlpools, ocean currents, seahorses, turtles and pufferfish!"; 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 = ''; } }