var fDesc=new Array();
fDesc[0] = "Transfuser 2 is a dynamic audio/MIDI environment for manipulating, slicing, and remixing your loops and sounds into something entirely new. With a series of real-time controls, Transfuser 2 lets you create and tweak grooves, chop up beats and phrases, time-stretch sounds, re-pitch notes, randomize sequences, and more – all on the fly. Transfuser 2 also acts as an inspiring compositional tool that intelligently generates chords, melodies, variations, and grooves based on a musical analysis of your track. Plus, Transfuser 2 comes with a premium drum and instrument library that includes 3,200 loops and 1200 drum machine samples for instant music experimentation.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}