var fDesc=new Array();
fDesc[1] = "fan, but a maniac!! Shape Shifter begins with two different modes of play: Beat the Clock and Speedster. Beat the clock is the classic mode that will hook you up for hours and hours, always challenging you";
fDesc[2] = "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[3] = "mixing process. Herewith you can edit your mix as you wish using different tools and effects using VST plugins. Use all your creativity.";
fDesc[4] = "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[5] = "to your desktop. It includes great stunts, cute animals, amazing bloopers, ridiculous pranks many more. The application allows you to select the videos you want to watch or also set the program as a screensaver.";
fDesc[6] = "95/98/Me/NT/2000/XP, it provides full support to skin able interface and Winamp DSP plug-ins. You will surely appreciate this tool after experiencing its upgraded set of advanced features.";
fDesc[7] = "Lite counts the beats per minute of every music file and adjusts to mix the music, the music mix is automatic and there are certain values that can be configured to make the mix without distortions and with a great quality in the mix.";
fDesc[8] = "playback. MixMeister Pro DJ software allows you to import thousands of audio and video files, analyze them, and then easily create the perfect mix.";
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] = "to Music IP, it is almost impossible to miss a single beat of the music. This tool helps the user to experience the music in any of the digital devices, websites, etc.";
fDesc[12] = "old classic platform games, in which you will have to jump, run, beat enemies and collect power-ups. Your mission is to guide Alex through the jungle to rescue his girlfriend Lola from humans who want to make a bag of her.";
fDesc[13] = "you there. Longer words make more fire to help you beat the opposite train. Get stoking now! And be sure to have lots of free time ahead!";
fDesc[14] = "deactivate the Beat (a sound that´s played periodically, at a regulated time period), you can adjust the volume for the metronome sounds, and switch between 4 different beat styles.";
fDesc[15] = "beautiful shapes with the spaces, but things start to hot up when you play against the clock. Can you beat the clock? Can you match the shapes in the time limit?";
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 = '...';
}
}