var fDesc=new Array();
fDesc[0] = "Buckle up for fast and furious nightlife action with your hot persona and slammin' race car. Drive through illustrious cities and collect chips to accelerate your speed. Purchase a stylized car in the garage and match three chips in a row to clear the level. Need that extra edge? Match four chips for an extra move. Win hot trophy cups for speed and skill in Fury Race, a Match-3 mega hit.
* Stylish Match-3 speed game
* Choose your persona and car
* Win trophy cups";
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 = '';
}
}