var fDesc=new Array();
fDesc[1] = "accompany you anytime, anywhere.";
fDesc[2] = "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[3] = "It proposes a new approach of DJ mixing since you can build and listen to your mix before they are played.";
fDesc[4] = "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[5] = "Player, Wave Player, Wave Editor, Disc Jockey, Favorites, Radio Tuner, Wave / Spectrum / Peak Analyzers. 26 media formats supported including MP3. Supports all compression codecs. Supports internet CDDB. Supports concurrent playback of multiple waves with realtime pitch control. Supports MP3 / wave creation, editing, and conversion. 18 wave editor tools included. DJ provides drag-n-drop queue construction, editing and playback. Includes audio librarian. One click access to sound effects and other media. Supports radio tuner control. Powerful tool for audiophiles, DJ's and radio broadcasters.";
fDesc[6] = "audio player; it allows its users the opportunity to mix music just like a Disc Jockey. The creative doors can really open up with this software.";
fDesc[7] = "Enhanced Automatic Loading, mixing, and atmosphere controls. Instant requests right from your easy to use old school Jukebox interface.";
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 = '...';
}
}