var fDesc=new Array(); fDesc[0] = "Mallet Mania is a game of logic and skill. It has elements in common with the popular Windows game Minesweeper, but the game itself is a brand-new concept.

The aim of the game is to flatten every square on the grid as fast as possible - the numbers tell you how many times each square needs to be hit before it's flattened.
The problem is that the mallet you use to hit them with isn't a very precise instrument, and it will hit several squares at the same time. What's more, hitting areas that are already flat would cause a dent and is not allowed, so completing the grid isn't as easy as it looks...

This game needs a quick eye and a fair amount of thought to win, but when you've got the knack, you can upload your best times and play in online tournaments against other players around the world!"; 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 = ''; } }