var fDesc=new Array();
fDesc[0] = "Trey is a Tribloo. He's also the leader of his village and needs your help to save it from the approaching storm. Journey across Tribloo Island as you embark on a terrific journey with Trey and his friends as they search for help. Help rebuild the villages of different Tribes and become the hero of the Tribloos!
Features:
-75 Levels and 5 Bonus Levels!!
-Help rebuild loads of buildings and clear obstacles!
-Cute Tribloos, staring in their own adventure!
-Exciting story set on a unique island!
-Over 25 Achievements to gain!
-Original Music Score!";
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 = '';
}
}