var fDesc=new Array(); fDesc[0] = "Metronimo Music Theory, allows to learn to read the treble clef and bass clef, to know the name of music symbols, and to recognize the name of key signatures.

In this game, the notes are represented by the ghosts of the Pacman game.

4 levels are available to learn the treble clef.
- The first level is dedicated to the landmarks and C and G. Notes (ghosts) are red.
- In the second level, other notes in black are added to the landmarks C and G (always in red). The notes appear jointly.

- In the third level, there are no landmarks. All notes are black and not appear jointly.
- In the fourth level, a note is moved from right to left. You need to find his name before it was devoured by a Pacman."; 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 = ''; } }