var fDesc=new Array();
fDesc[1] = "which sounds just like its real-world role model. It comes with a tube amplifier and speaker cabinets, engineered using Dynamic Tube Response technology, and present a wide range of options to the user, providing 120 presets and 11 alternative tonewheels sets.";
fDesc[2] = "and tuner.";
fDesc[3] = "1970’s synthesizer, providing users with the opportunity to experience this synthesizer’s unique sounds through a new technological version. The Yamaha CS-80 was considered by many in the music industry to be the ultimate synthesizer in the 1970’s";
fDesc[4] = "simulated tube amplifier tone. StudioDevil Virtual Guitar Amp, is now available for VST, Audio Units, and RTAS hosts. So, whether you're jamming tracks on your Mac with Garage Band or Logic, a PC with Cubase or SONAR, or running a ProTools system";
fDesc[5] = "Just Flight - 757 Professional 1.0. This is the add-on for the Just Flight professional range package. The 757 has the capability to fly from a hundred to around four thousand miles. The package comes with its variations of the 757 the -200 and the -300.";
fDesc[7] = "mind away. This wonderful tool joins three of the most famous and high quality grand pianos – or at least their sound and essence – for you to have them right in your personal computer.";
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 = '...';
}
}