var fDesc=new Array();
fDesc[0] = "Features
More than 1000 phrases to solve!
Explore 16 unique categories
Two different play modes!
Intuitive and easy to use interface
No time-limit pressure
What our customers say
"The game is really engaging for both the eyes and the brain!"
- Jae, South Korea
"Beautiful graphics, challenging and very user friendly! I love that you can actually learn stuff from playing it!"
- David, Australia
"This game helps my dyslectic daughter. Even I learn stuff from it!"
- Laura, United States
"This is a really fun brain exercise. I play it together with my grandson every time he comes to visit. I also learned a lot from the additional information you get about the composers, thinkers etc. That makes this game more than just a bunch of word puzzles thrown together!"
- Lynn, United States";
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 = '';
}
}