var fDesc=new Array(); fDesc[0] = "You control a jumping ball in this arcade game. The mission is difficult - avoid the flying wheelbarrows, needles, rocket-men, balls and all else that flies at you.

There are 4 bonuses: Heart ( 15hp), Speed Boost (horizontal boost), Airbreak (take-off in 3 seconds), Unbreakable (a god mode). With each collision your lose a life and only 51hp remains! Use your mouse to control the ball."; 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 = ''; } }