var fDesc=new Array(); fDesc[0] = "JAG is an arcade-puzzle 2D game. The aim of JAG is to break all of the target pieces on each level, and to do this before the time runs out. Keep doing this until you have beaten the last level and won the game.

Move game pieces using mouse into matches of 3 or more in a straight line horizontally or vertically. Doing this on top of the target cells will break them. The faster targets are removed, the bigger is score.

The are two play modes in the game - arcade and puzzle. The difference is - in arcade mode you can get new bonuses for collected items and use all the tools, and in puzzle mode you have only two tools (Hammer and Clock).

Also in the puzzle mode level doesn't fail when the time is over, you may continue, but you won't get any bonus points if the time is zero."; 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 = ''; } }