var fDesc=new Array();
fDesc[1] = "listen individually to it, anytime, or play the whole composition, adjusting tempo. Useful for music beginners to learn at a personal pace. While playing the composition, notes and lyrics light at the same time music is playing.";
fDesc[2] = "teaching method, without staffs and other things that maybe you don’t want to deal with. It’ll show you where to put each finger and on which string to play the melody you want to learn. This software is freeware, lightweight, and runs on Win98/98SE/Me/2000/XP.";
fDesc[3] = "manuals, the latest albums or songs, choose from a variety of styles, create your own music and enjoy the art of playing different instruments. You can also play in karaoke style, record your music and evaluate your performance. No more waiting, Digital Music Notebook is here for you!";
fDesc[4] = "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[5] = "processing technology. It is fast and easy to use software for recognizing chords from audio files of different formats like, MP3, WMA and WAV.";
fDesc[6] = "according to your needs. It also features a function for creating loops and Karaoke files. The trial version is fully functional during 15 days; after that, you must purchase a license.";
fDesc[7] = "and musicians to improve their skills. Even though the software is named as Guitarist, it is multi-instrument compatible. The instruments that are compatible with this software are Electric and Acoustic Guitars, 4-string instruments like Banjo and Cavaquinho, 5-string instruments";
fDesc[8] = "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[9] = "instrument, such as tuning, struming, arpegios, rhythms, and so on. It also includes an useful tuner and a metronome. The demo version includes only the first few lessons.";
fDesc[10] = "Adjust Tempo & Pitch independently, set start and End Loop points, loop difficult parts over and over and hear yourself get better!";
fDesc[11] = "true typing speed. It also shows you EXACTLY how to PLACE your FINGERS BEFORE TYPING parts of words (fingers are drawn on a virtual keyboard).";
fDesc[12] = "and key combinations while you play. You will never have to read music, or understand music theory to learn and use scales";
fDesc[13] = "who play, or want to play, the acoustic guitar the theoretical and practical support they need. Users are offered exercises and animations that provide clear and concise information as well as musical accompaniment helping them to develop their musical skills.";
fDesc[14] = "way of learning to play the electric guitar. Learn at your own pace following the animated fretboard and picking hand and experience for yourself the thrill of playing with a band that really rocks.";
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 = '...';
}
}