var fDesc=new Array();
fDesc[2] = "many dance games and all games can be played using PC keyboard, dance pad or hand sensors. You need to load songs to play this game. These songs can be down load from its website. StepMania works on Windows 98/ME/2000/XP, Linux and OS X platforms.";
fDesc[3] = "mixing process. Herewith you can edit your mix as you wish using different tools and effects using VST plugins. Use all your creativity.";
fDesc[4] = "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[5] = "exact BPM (beats per minute) of any song.";
fDesc[6] = "drum sounds that include rap, hip hop, rock, dance, and others. If you are a professional DJ or an amateur who enjoys creating music, you may find this tool really helpful.";
fDesc[7] = "Lite counts the beats per minute of every music file and adjusts to mix the music, the music mix is automatic and there are certain values that can be configured to make the mix without distortions and with a great quality in the mix.";
fDesc[8] = ", 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[9] = "software helps in the development of percussive samples. Many features have been used like drumhead selection, room and microphone configurations to fuse the qualities of a high-end drum recording and the cutting edge of the radical beats of today's top R&B, hip hop, and pop producers.";
fDesc[10] = "create music. Kids enjoy recording their own vocals; and be creative in their own way.";
fDesc[11] = "Making the rhythms or create a harmonious music sequence? Make your task easier by instantly seeing the tune's number of beats per minute (BPM)!";
fDesc[12] = "requirements. Users are presented with a neat, small tempo setting interface that is very easy to use. They can learn about rhythm and beats per minute by using the program’s user operated controls.";
fDesc[13] = "minute are. The author of BeatScanner owns a workout website, so he is marketing this application for those who need to find music that is good for workouts.";
fDesc[14] = "allows multiple tracks editing and remixing. The loop browser has a wide selection of effects like bass, beats, FX, guitar, keys, vocals etc. The master selection helps in the selection of tempo and snap.";
fDesc[15] = "of music. SoundTrek Drummer gives you the tools to be creative without the hassles of programming or the repetition of loops.";
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 = '...';
}
}