var fDesc=new Array(); fDesc[1] = "you communicate with your headquarters, and keep track of your investigation. The game itself, basically consists on looking and picking items from different locations, following a list provided by the game."; fDesc[2] = "of titles which represent different missions for Nancy Drew to solve. In Nancy Drew: The Haunting of Castle Malloy, Nancy will be trying to find the missing broom."; fDesc[3] = "thinks! Mysteryville 2 Deluxe again offers plenty of research for her and for you. Her friend Bill has gone missing, and how are the art auction and the new inhabitants involved?"; fDesc[4] = "backgrounds as they are lit up by the dance of lighting in the skies. The mood is completed with comforting, yet haunting background music"; fDesc[5] = "anyone that dares to pass by your computer, fell the ambience of Halloween. Probably your kids will love it more than you."; fDesc[6] = "maintain it in a proper condition. Your task list will include a lot of functions such as building new homes and repairing old buildings, golden veins, building farms, recruiting settlers, taking care of settlers and satisfying their need for accommodation, food, health and job."; fDesc[7] = "ramshackle house that appears to be haunted?"; fDesc[9] = "equipment and your wits to hunt down and capture evidence of the paranormal that may be lurking in the dark confines of the Red Reef Inn."; fDesc[10] = "odd clearing with a ramshackle house that appears to be haunted?"; fDesc[13] = "are after you. Swallow the power frogs and then you can destroy those mean ghosts and earn more points."; function tCollapseAll(maxID) { document.getElementById("alls_action").innerHTML = "Expand descriptions"; var id=1; for (id=1; id <= maxID; id++) { if (document.getElementById("desc_" + id)) tShowHide(id, 2); } } function tExpandAll(maxID) { document.getElementById("alls_action").innerHTML = "Collapse descriptions"; var id=1; for (id=1; id <= maxID; id++) { if (document.getElementById("more_" + id)) tShowHide(id, 1); } } function tShowHide(id, show) { var s = document.getElementById("more_" + id); if ((s.innerHTML!=fDesc[id] || show==1) && show!=2) { s.innerHTML = fDesc[id]; } else { s.innerHTML = '...'; } }