var fDesc=new Array();
fDesc[0] = "Antigraviator is a sleek, futuristic racer with customizable vehicles and dynamic courses filled with traps and other hidden hazards. It is a futuristic head-to-head racing game. Along the tracks you can pick up power globes and activate abilities and traps on your opponent.
At the time of writing we have an alpha demo out for you all to give the game a try.";
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 = '';
}
}