var fDesc=new Array(); fDesc[0] = "Legions of stickmen are trying to get into your town. Every day there will be a new wave, which will increase in size. Protect your defenses, if they are breached you will lose. Earn money by killing stickmen, then spend it on upgrades at the end of each day.

You will be able to buy different weapons and upgrades. Hire gunmen and anti-aircraft units to protect your defenses, masons to repair them or grenadiers to launch grenades at your enemies. You can only choose your weapon at the end of the day, so choose wisely."; 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 = ''; } }