var fDesc=new Array(); fDesc[0] = "Congratulations, you have been selected as a contestant for the TV show Kitchen Brigade! Over the next 66 days, you must successfully open and manage 7 different restaurants. Manage your 3 chefs and, when the orders start piling up, give your chefs a hand by playing cooking mini-games! Serve enchiladas, clam chowder, chicken satay, and over 50 other recipes in kitchens you build and upgrade. It's up to you to win the Kitchen Brigade TV Competition"; 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 = ''; } }