var fDesc=new Array(); fDesc[0] = "Sombreros is an arcade shooter made for Arthur Lee's Action 52 remake challenge, where you play as a Mexican gunslinger who has to retrieve a couple of giant hats from the bad guys. Ammo is unlimited in the game, and you can also call upon your sombrero power to pause time and mark enemies for a round of quick fire shots. Doing this depletes your sombrero gauge, but you can replenish it by collecting hats from defeated outlaws."; 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 = ''; } }