var fDesc=new Array(); fDesc[0] = "Bugged Out Rally is a fun racing game where you take control of bugs instead of cars. There are total of eight bugs in the game. Player starts with a beetle, the weakest bug, but can be upgraded to a faster and a higher performance bugs. To do this, races must be won and earnings collected. Bugs are won and earned in this order: beetle, ladybug, cockroach, grasshopper, hornet, praying mantis, scorpion, and black widow. When starting with weaker bugs, one must use Tactics or strategies to win the races. The latter four are fast, have better performance wheels, and tougher armor. Once you acquire one of those, it's matter of seeing how many kills you can get and how fast you can finish the race."; 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 = ''; } }