var fDesc=new Array();
fDesc[0] = "Eat, chant, and even puke your way through the highly comical, primeval land of Ooga! There’s never a dull moment as you meet, befriend, and finally acquire seven zany Oogani tribes. Uncover their lost ancient powers, and exploit their abilities and lead them in a revolt against the tyrannical Boolis. Classic platforming/puzzle solving with a novel eat/carry/puke inventory management component. Over fifty amazing levels, plus, narcotic slugs that make you loopy!
Ancients of Ooga is sure to take you out of this world.";
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 = '';
}
}