var fDesc=new Array();
fDesc[1] = "using your PC keyboard or mouse without the requirement of a conventional Piano.";
fDesc[2] = "software GuitarPro. The application is a multitrack reader and player of tablatures and score of your favorite songs, and you can create your own guitar tablatures as well. It has a very intuitive interface containing all the necessary tools to create stunning music.";
fDesc[3] = "a fun-filled musical performance. The user can make use of various types of drumming options such as acoustic beats for soothing background or the electronic drums for some rocking hits.";
fDesc[4] = "MuseScore, because this musical score editor will simplify your work, and your results will be exceptional. The final projects can be saved in many file formats, like PDF, MID, WAV, SVG, XML, etc.";
fDesc[5] = "providing them with an extensive library collection of percussion instrument sounds, samples and midi files, for their studios. The EZXPercussion 1.0 uses Teentalk Percussive Compression and the recorded sounds in this library add-on of different sizes of instruments";
fDesc[6] = ", can play on virtual instruments and percussion sets, records her/his own voice, combines the different parts as blocks to be aligned and applies multiple effects to the timeline.";
fDesc[7] = "and a percussion synthesizer. The program has a 100% synthetic sound which is rendered in real-time. There is no need for samples whatsoever. It also features an over-sampled oscillators as well as accurate sample triggering.";
fDesc[8] = "for children and adults. The included 128 instruments and 48 percussion instruments will provide you hours of fun.";
fDesc[9] = "rompler based on the PCM Synthesizer Module which provides users with drum sounds and effects additional to their host musical editing programs.";
fDesc[12] = "has five separate DigiDrum parts with five user definable audio outputs. It also features 27 classic drum and percussion waveforms. The program has an option to import any wave file.";
fDesc[14] = "need another expensive sound software.";
fDesc[15] = "rhythm patterns. These compositions can then be played, recorded to MP3 files or saved as a PDF file.";
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 = '...';
}
}