var fDesc=new Array();
fDesc[0] = "Master the maths of everyday living and outwit your competitors in this exciting single and multiplayer game! With powerful diagnostic and reporting capabilities, this curriculum-rich board game adventure will zero in on your child’s learning needs. They will master shape, space, measure, data and algebra skills.
-Monitors your child’s progress with detailed printable reports
-Correlated to the mathematics curricula of all Australian states and New Zealand
-Simple, kid-friendly animated interface that enhances self-directed learning
-Enhances reasoning skills and develops flexible problem-solving strategies";
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 = '';
}
}