var fDesc=new Array();
fDesc[0] = "A variant of match 3 puzzle game like no other. Includes 4 game modes (classic, time trial, challenge, marathon). The action takes place in a beautiful Mayan surrounding spiced up with a lot of special FX and original Mayan soundtrack.
Depending on the mode selected it's a mind-boggling action/puzzle game which will keep you on your feet, but it can also be a tough brain challenge in a classic/strategic mode. It's a MUST-HAVE for a serious competitor. Be the first to complete all 50 levels in classic mode.";
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 = '';
}
}