var fDesc=new Array();
fDesc[0] = "Paddy radically improves the workflow in Adobe Lightroom by allowing you to assign any adjustment setting - including moving the sliders and applying a preset - to essentially any key, external keypads, mouse buttons, a MIDI keyboard and MIDI controllers with physical encoders and faders. This gives you all editing (and some other) tools of Lightroom at the push of a button or move a physical fader. You do not need the mouse any more to get to presets or to adjust the sliders.";
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 = '';
}
}