var fDesc=new Array();
fDesc[1] = "and helps the user greatly in synchronizing the music. It is basically a top-end audio engine, which unveils a wide variety of sounds right from deep and delicate crystalline leads down to rocking leads and brutal basses.";
fDesc[2] = "hardwired input and output. Thus, you can record and process output of almost any audio application by almost any other audio application.";
fDesc[3] = ", effects processor, groovebox, and much more. High quality signal processing algorithms and the 32-bit floating point precision of REAKTOR's audio engine guarantee sound quality that meets the highest demands. The steadily growing REAKTOR libraries contain hundreds of different instruments with thousands of presets for a very wide range of sound generation and audio processing applications. All instruments can be modified freely, and even building own instruments from scratch is possible.";
fDesc[4] = "(equalizer, reverb etc.), WAV, MP3, OGG Vorbis file support, pattern banks, custom drumsets, triggered fade-offs supports, MIDI import.";
fDesc[5] = "making Renoise is rooted in a different approach to making music than most sequencers on the market today. This approach is known as tracking. Perhaps most characteristic of tracking is the sequencer having a vertical timeline. The trackers' bottom-up approach to creating music begs for a more straightforward and immediate access to notes and effects than a mouse can provide, hence the focus on the keyboard. Embracing modern techniques Instead of clinging on the past, we embrace modern development. ASIO, VST, FLAC and XML are a few recent technologies that are rapidly becoming indispensable. Community involvement The community has been involved in the development of Renoise since the very beginning. Many suggestions we received from forum members have been implemented. We improved what they considered being not good enough. The result is a powerful and reliable music production...";
fDesc[6] = ", 3,000 sound variations, along with 100+ effect settings. The KORE 2 unleashes six incorporated sound engines, along with a dedicated hardware controller, as well as the ultra-fast KoreSound browser.";
fDesc[7] = "sub busses and effect returns, as well as powerful sequencers, generators and effects. All common interfaces, ReWire2, VST and DirectX are fully supported. Orion Platinum ships on CD with a 600 MB library of more than 800 royalty-free presets and high quality multisamples.Orion Platinum comes with a selection of 37 internal effects - including reverb, delay and chorus effects, a full parametric equalizer, and more.";
fDesc[8] = "realtime music recognition. Several MIDI output methods can be chosen. Detected notes as well as signal spectrum are displayed in the plugin window. Adjustable recognition parameters allows improving recognition quality.Most of VST capable sequencers (VST hosts) for Microsoft Windows are supported.";
fDesc[9] = "require an additional sequencing program. The V-STACK virtual instrument rack is perfect for those needing a program for live use on a stage or if it just intended as an extension for existing VST system link networks without needing more sequencers.";
fDesc[10] = "modular synthesizer with one sample feedback included which can be used to make VST plugins. Sampler has multi-layered instruments similar to SF2 format, and can import SF2 files. Synth loads +50 native plugins ranging from standard effects like delay and chorus to big analog style synths and FM synths. Most native plugin synths include 7 out effects, 2 mod matrixes and also 2 arpeggiators or step sequencers.";
fDesc[11] = "rules, but an open ended palette of composing modules to powerfully boost your creativity.";
fDesc[12] = "Not a set of canned me-too riffs or rules, but an open ended palette of composing modules to powerfully boost your creativity.";
fDesc[13] = "Each of the eight arpeggiators has separate controls for MIDI channel, program, motion algorithm, rhythm, and more. Arp-X8 combines these settings with input from the keyboard to produce music that can range from simple arpeggios to rich, rhythmically complex clouds of sound. Arp-X8 is fully interactive, with all output automatically recorded to a MIDI file for export to conventional sequencers. Multiple instances of Arp-X8 are automatically synchronized, and can sync to any otherprogram or device that utilizes MIDI clock messages.";
fDesc[14] = "real time. You can use it to automate your MIDI file editing work. Or build your own real time MIDI tools, like sequencers or arpeggiators.";
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 = '...';
}
}