var fDesc=new Array(); fDesc[0] = "Pianonimo allows to learn reading the treble clef, the bass clef and the position of notes on a piano keyboard.
Pianonimo have 6 games are available. In the first game, a note on a staff is shown in the center of the screen. You must click on the key of the piano that corresponds to this note. To help you, the name of notes was put on the keyboard of the piano.

The note can take 4 different colors: blue for E and B, orange for C and G, green for D, F, A and red for the others.

Game 2In the second game, a color bubble was put on the keys of the piano. Colors are the same on the keyboard and on the staff (blue when it is E or B, green when it is D, F or A, etc. ..)"; 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 = ''; } }