var fDesc=new Array(); fDesc[0] = "While walking home with a group of friends, you discover a mysterious beam of light coming from an unexpected solar eclipse. The light leads you to an ancient astrological site that suddenly transports everyone to an unfamiliar world! Stranded, you must help your friends create a new civilization by gathering resources, building shelter and conducting research. Your group will also grow in numbers as couples match up and mate based on their astrological preferences. Can you complete the tasks that will lead you home?"; 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 = ''; } }