// 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 ("Cats")
 item ("Cat Pics 1", "catpics1.htm")
 item ("Cat Pics 2", "catpics2.htm")
 item ("Cat Pics 3", "catpics3.htm")
 item ("Road Rage", "catroadrage.htm")
 item ("Bathe the Cat", "catbathe.htm")
 item ("Cat Helmet", "cathelmet.htm")
 item ("Cat Commandments", "catcommandments.htm")
 item ("Cat Laws", "catlaws.htm")
 item ("Cat Rules", "catrules.htm")
 item ("Cat Experiment", "catexperiment.htm")
 item ("Cat Quotes", "catquotes.htm")
 item ("Dead Cat", "cattest.htm")
 item ("Flash Cat", "flashcat.htm")
 
menu()

menu ("Computing")
 item ("Mouse Calibrator", "mouse_cal.htm")
 item ("Life Before the PC", "lifebeforepc.htm")
 item ("Internet Killed", "internet.htm")
 item ("Net Recovery", "netrecovery.htm")
 item ("Windows 95", "win95.htm")
 item ("50 Ways to...", "50ways.htm")
 item ("TLA's", "TLA.htm")
 item ("ISP Helpdesk", "helpdesk.htm")
 item ("Technology", "technology.htm")
menu()

menu ("Other")
 item ("Chain Letters", "chainletters.htm")
 item ("Cool Person Test", "coolperson.htm")
 item ("Dancing Page", "dance.htm")
 item ("EuroEnglish", "euroenglish.htm")
 item ("Relax", "relax.htm") 
 item ("Fortune", "fortune.htm")
menu()

menu ("Whoops!")
 item ("Crane", "crane.htm")
 item ("E-bay", "ebay.htm")
  item ("Dasani", "dasani.htm")
menu()

menu ("Oops")
 item ("Armageddon", "armageddon.htm")
 item ("Armageddon 2", "armageddon2.htm")
 item ("Boobs", "boob.htm")
 item ("Wiggle Bum", "wiggle.htm")
 item ("Orgasm", "orgasm.htm", "_blank")
 
menu()

menu ("Marshmallow")
 item ("Hamster Dance 2", "marshy.htm")
 item ("Keyboard + Mouse", "keyboard.htm")
menu()







// do not touch!
}
// thank you
