var fDesc=new Array();
fDesc[0] = "An old friend has called you in to help investigate a string of recent murders. The latest victim was only missing one thing - their skin. As you start investigating, you're quickly thrown into a world of dark magic and creatures. Find the murderer in time, or will you be their next victim. Find out in this bone-chilling Hidden-Object Puzzle adventure.
-Save Sorrel's family from the Hunters in the bonus game
-Replay your favorite mini-games and HOPs.
-Earn achievements and hunt for hidden collectibles.
-Enjoy concept art, wallpapers, screensavers, and more!";
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 = '';
}
}