var fDesc=new Array();
fDesc[0] = "Play as all 4 Turtles characters: Leonardo, Raphael, Donatello and Michelangelo are represented with unique combat skills and acrobatic moves.
· Relive the CGI movie: The game follows the movie plot and includes all same key environments, characters and enemies.
· Combat Evolution: Begin the game playing as a single character, then rejoin the family to fight as a team with the option of collaborative, combat moves.
· Exciting Action Experiences: Acrobatic jumping from rooftops, scaling tall buildings, diving down sewer pipes, pole-vaulting moves, and flying with nun-chuck weapons.
· Special Video Game Bonuses: Some enemies from the original comic book series will feature as guest stars in the video game!";
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 = '';
}
}