var fDesc=new Array();
fDesc[0] = "iDrinkingGame Rocks. Really really hard.
iDrinkingGame is the original on the fly power hour generator for iTunes.
Given an iTunes play list, a single button click of your mouse will start you on the way to an endless power hour.
iDrinkingGame automatically plays a minute of each song from your play list for you and because it uses iTunes you can easily change the songs coming up and in what order things are played .
With iDrinkingGame 2.0 you can even have iDrinkingGame make a burnable power hour out of any playlist so you can take it on the go.
iDrinkingGame is the definitive power hour solution.";
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 = '';
}
}