var fDesc=new Array(); fDesc[0] = "The board may seem rather weird to you but look - the rules are rather simple: there is a hunter on the board that has to gather green spheres giving you points. At the same time you should always mind the cannons moving along the edges of the board and firing at the hunter.

A piece of ice will make the cannons stop firing (for a while, unfortunately) and a heart will give you an extra life. But don't forget to gather the green spheres- as soon as you've gathered all the spheres you'll go to the next level.
To drive the hunter you should use the arrows buttons: "up", "down", "right" and "left". Just remember the rules and have fun!!!"; 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 = ''; } }