var fDesc=new Array(); fDesc[0] = "Take a shot of your favorite beer every minute while being entertained along the way. The seconds remaining timer will count down from 59 to 0 while one of over 1,000 content pieces is displayed on the screen. At the end of each minute, you will hear a loud burp and the word DRINK flashes. This signifies that it’s time to take the next shot of beer and prepare for the next crazy content; whether it’s The Beer Man Says..., a famous alcohol quote, blonde joke, sing-a-long song, movie quote, etc."; 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 = ''; } }