var fDesc=new Array(); fDesc[0] = "Giraffe on a mission to gobble all the apples! Your objective is to collect the apples in the tree and then get your head to the exit. The tricky part is not crossing your neck at any point or blocking your head into a corner! You have limited amount of time and puzzles become more difficult as you progress through the game. You will meet some magical teleportation holes on some levels. Look out for monkeys, just knock them out of the tree. Help the giraffe eat all the apples in the tree without breaking his neck."; 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 = ''; } }