var fDesc=new Array();
fDesc[1] = "professional audio production. Use Adobe Audition to: - Create your own music - Record and mix a project - Produce a radio spot - Clean up audio for a movie - Compile and edit a soundtrack Whatever you do with audio, Adobe Audition software helps you sound your best.";
fDesc[2] = "you to mix multiple audio tracks together quickly and easily, and also record your own audio tracks using its high quality audio recorder.";
fDesc[3] = ", etc.. It is commonly used as a virtual studio or as a collection of virtual instruments to use live or with other software sequencer.";
fDesc[4] = "installed and run in English or German. You can choose to install support for AAC/M4A format to play non-drm iTunes files (Internet connection required).";
fDesc[5] = "designed to use and experiment DJ techniques without any DJ equipment. Its modern design and user interface with skin support allows the user to handle it even under the most difficult circumstances. Its wide spectrum of features allows the home user to do all DJ work without any additional hardware.";
fDesc[6] = "empowering music lovers, aspiring DJs and pros to scratch, adjust tempo and pitch, play backwards, and mix MP3s, WAVs, Ots files and CDs.";
fDesc[7] = "transitions that enable anyone to produce cool MP3 mixes. In the program's nice graphic interface, different visualizations show the beats as the music plays.";
fDesc[8] = "add different nice effects to your audio files. The program will enable you to transpose and to change the speed of your music files.";
fDesc[9] = "more rocking and memorable than ever. The software supports two totally independent decks which have a queue of files or playlists. It provides a professional quality of sound so also a very good beat synchronization display.";
fDesc[10] = "and MIDI support, VST/AU effects, precise automatic BPM counter, sampler, vinyl emulation and many other things.";
fDesc[11] = ", Solution Providers, Businesses and AV Enthusiasts.";
fDesc[12] = "beat-aware loops and many other things. All theese thanks to the precise automatic BPM counter. Try it and you won't regret it!";
fDesc[13] = "music. The program gets audio from differents sources: microphone, aux and line in inputs, etc. The user can drag and drop audio samples to the timeline window, and the application will adjust it to adapt it to the tempo of the previous recording.";
fDesc[15] = "large investments. Sound mixing becomes a pleasure, ran by mouse-clicks";
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 = '...';
}
}