var fDesc=new Array(); fDesc[0] = "The Breakdown is an old school, point'n click adventure game.

After the intro it will become clear, that you're playing the pointy haired main character, and your objective is to get to your home town and cash the winning lottery ticket in time.

You control the game with you mouse. When the cursor is a gray arrow, left-clicking somewhere tells the main character to walk there.

You can also choose an action to perform from the menu at the top of the screen. You have three action icons: 'Look At', 'Talk To' and 'Take/Use'. Left click on the icons and you can perform the action on objects on the screen or items in your inventory."; 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 = ''; } }