// items structure
// each item is the array of one or more properties:
// [text, link, settings, subitems ...]
// use the builder to export errors free structure if you experience problems with the syntax

var MENU_ITEMS = [
	['Home', 'http://www.albees.com', null
	],
	['Photography', null, null,
		// this is how item scope settings are defined
		['Victoria - Volleyball', null, null,
		 	['McNeil HS 2008', 'http://www.albees.com/Vball2008.php', {'tw':'_parent', 'sb':'High School Volleyball - Freshman Team'}],
			['Cedar Valley MS 2007', 'http://www.albees.com/Vball2007.php', {'tw':'_parent', 'sb':'Middle School Volleyball'}]
		],
		['Victoria - Basketball', 'http://www.albees.com/bball2007.php', {'tw':'_parent', 'sb':'Middle School Basketball'}],
		['Jennifer - Dance', null, null,
		 	['McNeil Majestics 2008-9', 'http://www.albees.com/Dance89.php', {'tw':'_parent', 'sb':'McNeil Majestics 2008-9'}],
			['McNeil Majestics 2007-8', 'http://www.albees.com/Dance.php', {'tw':'_parent','sb':'McNeil Majestics 2007-8'}],
			['McNeil Majestics 2006-7', 'http://www.albees.com/Dance67.php', {'tw':'_parent','sb':'McNeil Majestics 2006-7'}]
		],
		['Family Photos', 'http://www.albees.com/Family.php', {'tw':'_parent', 'sb':'The Albee family photos'}],
		// this is how multiple item scope settings are defined
		['Special', 'http://www.albees.com/Renditions.php', {'tt':'Digital Image Manipulation', 'sb':'Digital Image Manipulation'}],
		['Nature', 'http://www.albees.com/Nature.php', {'tt':'Photos - Nature', 'sb':'Nature Photos'}],
		['Online Gallery', 'http://www.flickr.com/photos/texasalbees/', {'sb':'My Photo Gallery on Flickr.com'}],
		['For Sale', null, null,
			['McNeil Womens Volleyball', 'http://jpalbee.dotphoto.com/CPViewAlbum.asp?AID=4770569', {'sb':'McNeil HS Womens Volleyball - Varsity (2008)'}],
			['McNeil Majestics Drill Team', 'http://jpalbee.dotphoto.com', {'sb':'McNeil Majestics Drill Team (2008-9)'}]
		]
	],
	['Kites', 'http://www.albees.com/kites.html', null,
		
	],
	['Special Activities', 'http://www.albees.com', null,
		
		['Brother\'s Waterfall Biz', 'http://www.water-fall.info'],
		['Music Machine', 'http://www.albees.com/wwwmusic/index.shtml', {'tw':'_top', 'tt':'Welcome Page', 'sb':'Test Status Bar Message'}],
		['Our Blogs', null, null,
		 	['John\'s', 'http://www.wattsthecost.com', {'tw':'_parent', 'sb':'Looking at the cost of energy and tools to measure'}],
			['John\'s @ Work', 'http://talk.bmc.com/blogs/blog-jalbee/john-albee/', {'tw':'_parent', 'sb':'Mainframes never Die!'}],
			['Beth\'s', 'http://www.yankeelandedintexas.com', {'tw':'_parent', 'sb':'Multiple Topics'}]
		 ],
		['Sean\'s Graduation', 'http://www.albees.com/FSU/index.php', {'tw':'_parent', 'sb':'April 2008 - Double Major (Finance & Accounting)'}],
		['Custom Cartoons', null, null,
		 	['Sean\'s Graduation', 'http://www.albees.com/cartoon/seangrad.php', {'tw':'_parent'}],
			['Jennifer\'s Prom', 'http://www.albees.com/cartoon/jennprom.php', {'tw':'_parent'}],
			['Vicky\'s Game', 'http://www.albees.com/cartoon/vickgame.php', {'tw':'_parent'}]
		 ],
	],
	['Contact', '']
];

