var fDesc=new Array();
fDesc[0] = "This is another 48-hour contest entry. The theme this time was 'Swarms', which will be apparent in the game.
Nantucko Entertainment made a mistake. No, it wasn't naming their new game console "The Wee." It was offering 2 free Wee controllers with every preorder. Only shipping 4 consoles on launch day might be a close second, though. Now with your controllers wired together into a deadly controller-chaku, YOU are the Wee Ninja. Go collect your preorder. Let none oppose your wee might!!
- 6 Levels of shopping mayhem
- 7 Mad Skillz to unlock and boost your power to truly Wee levels
- Massive crowd-smashing insanity!!
- Utterly absurd sound effects
- Includes complete source code if you'd like to learn how it was made";
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 = '';
}
}