var fDesc=new Array();
fDesc[1] = "percussions. The free version lets you record an unlimited number of MIDI tracks, one Audio track, and two sampled percussions. With the Multi-Track accessory, you can record multiple Audio tracks and sampled percussions. Audio effects include delay, pitch change, volume change, pan, filtering, and reverse. Designed to work with optional accessories such as sheet music printing, piano exercises, ear training exercises, and voice-pitch analysis.";
fDesc[2] = "basics in order to get more and more deeply into this fantastic practice. You will be able to read and play a lot of chords, scales and progressions on a realistic fretboard.";
fDesc[3] = "in order to create a new user account. After that, the game will check your system in order to configure your sound card and preferred instrument to play the songs.";
fDesc[4] = "is available for Windows operating system. It’s also very useful for beginner. Advance user can make music and test it whereas a beginner can practice and learn the base/guitar. It also provides keys/scales/chords references, tablature tool and midi tracks for practicing.";
fDesc[5] = "particular note by listening to a random sequence that includes the note. When you are confident you know the note, you can take a test.";
fDesc[8] = "one works with the input of the guitar itself; allowing you to tune your instrument in a rather precise way. The metronome allows you to play between 10 and 320 beats per minute and between 1 and 128 beats per measure. A very useful program for guitar players.";
fDesc[9] = ", you will be able to practice: Reading notes, Train your ear, and learn to play a score with different instruments. This is a 3 in 1 musical software that will definitely improve your musical skills.";
fDesc[10] = "you learn at your own pace. It requires no previous knowledge of music and its \"Cartoons\" option makes it even more fun.";
fDesc[12] = "Along, Repeat After, Reading, and Dictation. All standard time signatures and divisions + fully customize";
fDesc[13] = "reporting information showing your progress as a musician. Simple, affordable, effective. Download free trial and try it now!";
fDesc[14] = "possible to develop your attention, your aural skills and your musical memory.";
fDesc[15] = "Develop the ability of playing whatever is in your mind without hesitation and without mistakes, improve your improvisation.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}