// menu_items.js file
// comments block here

var MENU_ITEMS =[
	["Home", "index.htm"],
	["Slide Show", null,
		["Auto", null,
		  ["2003", "slideshow.htm"],
		  ["2004", "slideshow2004.htm"],
		  ["2004 +", "slideshowmore2004.htm"],
		],  
		["Manual", null,
		  ["2003", "slideshow1.htm"],
		  ["2004", "slideshow12004.htm"],
		  ["2004 +", "slideshow1more2004.htm"],
		],  
	],
	["Movie", "movie.htm"],
	["My Family", "family.htm",
		["Granny", "granny.htm",
			["Barry", "barry.htm"]
		],
		["Shane", "shane.htm",
		    ["Vacant", "vacant1.htm"]
		],	
		["Kelli", "kelli.htm",
			["Johnny", "johnny.htm",
				["Junior", "junior.htm"],
				["Jackob", "jackob.htm"]
			]
		],
		["Chrissy", "chrissy.htm",
			["Ian", "ian.htm",
				["Nathan", "nathan.htm"],
				["Koty", "koty.htm"],
				["Tyler", "tyler.htm"]
			]
		],
		["Celeste", "celeste.htm",
		    ["Vacant", "vacant3.htm"]
		],
		["Mommy", "mommy.htm",
		    ["Vacant", "vacant2.htm"]
		],	
	],
	["Events", "events.htm"],
	["Weight", "weight.htm"],
	["Guestbook", null,
	    ["View", "guestbook/default.asp"],
		["Sign", "guestbook/sign.asp"]
	],
	["Awards", null,
	    ["Page 1", "awards1.htm"],
	    ["Page 2", "awards2.htm"],
		["Page 3", "awards3.htm"]
	],	
	["Links", "links.htm"]
];
