var fDesc=new Array();
fDesc[0] = "A fast-paced, frenetic, one-step-away-from-chunky-death melange of sneaking, platforming, hacking and cursing. A whole lot of fun. It's like Metal Gear Solid and Super Meat Boy had a baby out of wedlock. Semi-literally.
Jump, sneak, and be horribly dismembered through 28 levels hand-crafted by our crack team of in-house design geniuses, some of the same folk behind the critically-acclaimed Fluidity/Hydroventure, and the retro-styled PSN platformer Explodemon!.";
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 = '';
}
}