// nav.js
// do not touch!
function buildMenu() {
// thank you

/* nav.js

The format is vey simple to use

For each menu block you use menu("Title")

For each menu item use item("Item", "page.htm", "target")
Note that target is optional and can be omitted.

It is important to end each menu block.
To do this simply use menu()

Menu items do not have to be enclosed in a menu block.

*/


menu ("Puzzle Pics")
 item ("Puzzles", "puzzlepics.htm")
menu()

menu ("Silly Stuff")
 item ("Silly", "silly.htm")
 item ("Bubblewrap", "bubblewrap.htm")
 item ("Poke the Penguin", "poke.htm")
 item ("Poke the Bunny", "pokebunny.htm")
 item ("Fast Click", "mouseclick.htm")
 item ("Talk It", "talkit.htm")
menu()

menu ("Silly Scripts")
 item ("l337 speak", "leet.htm")
 item ("Messed Text", "messed.htm")
 item ("Binary Text", "binarytext.htm")
menu()

menu ("JavaScript Games")
 item ("Blocks", "blocks.htm")
 item ("Boxes", "boxes.htm")
 item ("Hangman", "hangman.htm")
 item ("Snake", "snake1.htm")
 item ("TicTacToe", "ttt.htm")

menu()


menu ("Binary Watch")
 item ("Binary Watch", "watch.htm")
menu()

menu ("Make Movies")
 item ("Movies", "movies.htm")
menu()

menu ("Other Stuff")
 item ("Build snowman", "snowman.htm")
menu()







// do not touch!
}
// thank you
