var fDesc=new Array(); fDesc[0] = "Pumpkins and Friends is a puzzle game where each one of the four characters is decorating his or her personal space, wearing a super cool Halloween outfit as well. You are supposed to help them prepare every little decoration detail for the big event and see them all in their special rooms.

Mina is in the pumpkin kitchen, Lisa in the spooky garden, Sisi in his weird room and Toto in his cozy one. And they are all preparing and asking for your help to decorate along with them."; 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 = ''; } }