var fDesc=new Array(); fDesc[1] = "boards and chess pieces chooseable."; fDesc[2] = "a strange and mysterious place in the middle of a dark forest. You will find a very weird house, maybe an abandoned mansion of some sort. Who lived there? Or who lives there now? Or maybe, what lives there?"; fDesc[5] = "meanest and most destructive machines in the world known for its monster size the power that goes with it. In this game you can experience the crazy stunts the high adrenaline races destruction rampage."; fDesc[6] = "strange things. This awesome screen saver will show you a graveyard at night during a storm. There are several graves, where phosphorescent lights wander near the ground."; fDesc[7] = "expression. The developers describe it as an interactive picture, however there is a meaning to it as in all works of art. This might be the genesis of a new form of art."; fDesc[9] = ", listen to spooky music, and enjoy ghostly Halloween graphics, while removing the 144 tiles in matching pairs."; fDesc[11] = "Haunted Mansion, in the middle of nowhere. You will be able to see a very ancient house that will surely start your feelings flying. You will remember all your childhood fears, and the present ones too."; 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 = '...'; } }