var fDesc=new Array(); fDesc[0] = "Mrs. Piggly is a pig on a mission, and her mission is to bake delicious homemade apple pies for her piglets. So she's gone out to the forest to gather some apples.
But those apples aren't coming in without a fight.
Countless environmental dangers await in her path (not to mention the forest's many hungry inhabitants), ready to snatch her apples from right under her nose."; 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 = ''; } }