var fDesc=new Array(); fDesc[0] = "Red Riding Hood: Star-Crossed Lovers is a hidden object puzzle adventure game. Red Riding Hood and the Werewolf have known each other for years and have since grown very close. They have even been having secret meetings in the forest, but their relationship has not gone down well with the Werewolf clan. Adamant that he must prove his worth, his family orders the Werewolf to bring back a human prey who is none other than the sweet and pretty Red Riding Hood. He refuses to obey and decides to run far away with Red Riding Hood"; 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 = ''; } }