var fDesc=new Array();
fDesc[1] = "in years. Capable of producing rich, hypnotic, and rhythmic basses, leads, and pads, Rapture is perfect for performing and designing the modern synthesized sounds igniting today’s pop, dance, and electronic music. And it is now available as a download.";
fDesc[2] = "the new sound, which amuses, reduces stress and helps to produce rhythmic typing.";
fDesc[4] = "youve seen before. The name 'Snoqualmie' (pronounced 'snow-kwal-mi') comes fromthe Snoqualmie Tribe in western Washington state. Snoqualmie Falls is the center of creation for the Snoqualmie Tribe, and if you are ever lucky enough to see the falls, youll see why we chose this name for our new screen saver, because the screen savers rhythmic, dancing patterns of colorful dots can bring to mind the rainbow-colored mist rising from the beautiful Snoqualmie waterfall. Snoqualmie (the screen saver) uses single dots, and lots of them, to simulate larger patterns that the eye sees when it connects the dots. Patterns generated can resemble those of nebulae, clouds, or the Snoqualmie Falls. And just like clouds, you may seepatterns that look like other things, like horses morphing into dragons morphing into a shoe. Its a fun excercise to see how many different things you can make out of what is...";
fDesc[5] = "Along, Repeat After, Reading, and Dictation. All standard time signatures and divisions + fully customize";
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 = '...';
}
}