var fDesc=new Array(); fDesc[0] = "Time for Scooby and Shaggy to snowboard and catch some big air on another remixed big air game. Select your character, the scene, customize your board and start rolling by using the LEFT or RIGHT ARROW KEYS matching the direction your character is facing until you get off the ramp. Once in the air press the UP ARROW KEY to increase your height and speed. When you begin to descend, press the DOWN ARROW KEY to increase your downward speed."; 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 = ''; } }