var fDesc=new Array();
fDesc[0] = "A mind-bending game of logic and skill. Test your brain power over 100+ puzzle levels graded from easy-peasy up to fiendishly hard, or try your reflexes and planning skills on the real-time Arcade Mode! Build your own custom puzzle levels with a complete Level Editor, and share them with your friends!
Simply guide the cars home using the colored arrows - sounds easy doesn't it? But with 100+ do you have what it takes to be a Traffic Jammer Champion?
Features include:
- Unlimited Plays
- 100+ Puzzle levels
- Frantic Arcade Mode
- Full Level Editor
- Full tutorial to get you started
(Free Trial is limited to 10 plays, and has restricted features and levels)";
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 = '';
}
}