var fDesc=new Array(); fDesc[0] = "This pesky parrot is thirsty and you need to help cure his thirst for fruit juice! Switch fruits and make sets of three or more to squeeze juice for the parrot. The more fruits you can squeeze at one time the better and faster you will be able to please the parrot. In order to reach the next level you must fill the parrots juice cup. When you see an ice cube make its way into the map, you must try and get it to the bottom. If you are able to do this you will get a bonus!"; 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 = ''; } }