var fDesc=new Array();
fDesc[0] = "Shufflr - probably the most powerful social video browser out there. Discover, watch and share online videos with your friends and favourite celebrities.
At the flip of a switch, the desktop app turns into a docked mini app - just so you can stay tuned to that buzzing music video while doing some serious work. And here is the neatest trick in the town - switch to "Lean back" and relax on the couch with your favourite videos.";
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 = '';
}
}