var fDesc=new Array();
fDesc[0] = "Get ready for your first race... on a napkin! Race up to three of your friends in splitscreen, challenge a buddy across your network or try against up to four computer opponents. Choose from two gamemodes: checkpoint race [made with needles] and tag race. The game offers OpenGL rendered graphics with a cartoony look, featuring particle effects and realtime shadows.
The game runs on Windows Vista/XP/9x.";
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 = '';
}
}