var fDesc=new Array(); fDesc[0] = "A logical quest, based on the classic game SlitherLink. Are there dragons living deep within the earth? With logic on your side, it's your mission to find out.

Unique Quests
It's easy to learn to play SlitherQuest!
- A number in a cell is a clue that tells you how many path lines are drawn around it.
- There's 1 path line next to a 1, 2 path lines next to a 2, and 3 path lines next to a 3. There are no path lines around a 0.
- It's up to you to figure out how many path lines to draw around a cell without a number.
- The path is continuous and it does not intersect itself. There are no Xs or Ts.
- When finished, the path forms a closed loop, or, if there are arrows present, the path connects the two arrows.
- SlitherQuest puzzles are variations on the classic pencil and paper puzzle game, SlitherLink."; 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 = ''; } }