var fDesc=new Array();
fDesc[0] = "When a horrible accident unleashes waves of gravitational force across the planet, it cracks the crust and sends floating land masses into the air. Guster; the son of man responsible, is charged with the task of setting things right.
gShift is a 2.5D puzzle-platformer:
- 99 levels across 10 terrains
- 8 unique obstacles
- 15 hours of gameplay
The game comes with the Original Sound Track included.";
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 = '';
}
}