// 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.spsu-auv.org/'],
	
	['Forums', 'http://www.spsu-auv.org/2008/Forums/'],
	
	['Sponsors', 'http://www.spsu-auv.org/2009/Sponsors/Pages/Sponsors.php'],
	
	['Competition', null, null,
		['About', 'http://www.spsu-auv.org/2009/Competition/Pages/Competition.php'],
		['Missions', 'http://www.spsu-auv.org/2009/Competition/Pages/missions.php'],
		['Schedule', 'http://www.spsu-auv.org/2009/Competition/Pages/schedule.php'],
	],
	
	['Team', null, null,
		['About Us', 'http://www.spsu-auv.org/2009/The_Team/Pages/AboutUs.php'],
		['Our Advisor', 'http://www.spsu-auv.org/2009/The_Team/Pages/advisor.php'],
		['Join', 'http://www.spsu-auv.org/2009/The_Team/Pages/Join.php'],
	],
	
	['Members', null, null,
		['Phillip Cannon', 'http://www.spsu-auv.org/2009/Members/Phillip/Phillip_Cannon.php'],
		['Christy Hilley', 'http://www.spsu-auv.org/2009/Members/Christy/Christy_Hilley.php'],
		['Ross Pettingill', 'http://www.spsu-auv.org/2009/Members/Ross/Ross_Pettingill.php'],
		['Steven Sorensen', 'http://www.spsu-auv.org/2009/Members/Steven/Steven_Sorensen.php'],
		['Luke Tornquist', 'http://www.spsu-auv.org/2009/Members/Luke/Luke_Tornquist.php'],
		['Sarah Tippens', 'http://www.spsu-auv.org/2009/Members/Sarah/Sarah.php'],
		
		
	],
	
	['System Design', null, null,
		['Design Purpose', 'http://www.spsu-auv.org/2009/System_Design/Pages/Design_Purpose.php'],
		['Requirements', 'http://www.spsu-auv.org/2009/System_Design/Pages/Competition_Requirements.php'], 
		['Considerations', 'http://www.spsu-auv.org/2009/System_Design/Pages/Consideration.php'],
		['Risk Analysis', 'http://www.spsu-auv.org/2009/System_Design/Risk_Analysis.php'],
	],
	
	['Subsystems', null, null,
		['Command & Control', 'http://www.spsu-auv.org/2009/Subsystems/CCC/CentralCC.php'],
		['Communication', 'http://www.spsu-auv.org/2009/Subsystems/COM/Comunication.php'],
		['Interfacing', 'http://www.spsu-auv.org/2009/Subsystems/INT/Interfacing.php'],
		['Navigation', 'http://www.spsu-auv.org/2009/Subsystems/NAV/Navigation.php'],
		['Power', 'http://www.spsu-auv.org/2009/Subsystems/POW/Power.php'],
		['Propulsion', 'http://www.spsu-auv.org/2009/Subsystems/PRO/Propulsion.php'],
		['Sonar', 'http://www.spsu-auv.org/2009/Subsystems/SON/Sonar.php'],
		['Structure', 'http://www.spsu-auv.org/2009/Subsystems/STR/Structure.php'],
		['Vision', 'http://www.spsu-auv.org/2009/Subsystems/VIS/Vision.php'],
	],
	
	['Pictures' , 'http://www.spsu-auv.org/2009/Pictures.php'],
	
	['Past Year\'s Websites', null, null,
		['2008', 'http://www.spsu-auv.org/2008/'],
		['2007', 'http://www.spsu-auv.org/2007/2007_public/'],
		['2006', 'http://www.spsu-auv.org/2006/'],
		['2005', 'http://students.spsu.edu/auvrobot/'],
	]
	/*
	['Menu Compatibility', null, null,
		['Supported Browsers', null, null,
			['Win32 Browsers', null, null, 
				['Internet Explorer 5+'],
				['Netscape 6.0+'],
				['Mozilla 0.9+'],
				['AOL 5+'],
				['Opera 5+'],
				['Safari 3+'] // there must be no comma after the last element
			],
			['Mac OS Browsers', null, null,
				['Internet Explorer 5+'],
				['Netscape 6.0+'],
				['Mozilla 0.9+'],
				['AOL 5+'],
				['Safari 1.0+']
			],
			['KDE (Linux, FreeBSD)', null, null,
				['Netscape 6.0+'],
				['Mozilla 0.9+']
			]
		],
		// this is how custom javascript code can be called from the item
		// note how apostrophes are escaped inside the string, i.e. 'Don't' must be 'Don\'t'
		['Unsupported Browsers', 'javascript:alert(\'hello world\')', null,
			['Internet Explorer 4.x'],
			['Netscape 4.x']
		],
		['Report test results', 'http://www.softcomplex.com/support.html'],
	],
	['Docs & Info', null, null,
		// this is how item scope settings are defined
		['Product Page', 'http://www.softcomplex.com/products/tigra_menu/', {'tw':'_blank'}],
		// this is how multiple item scope settings are defined
		['Welcome Page', '../ReadMeFirst.html', {'tw':'_top', 'tt':'Welcome Page', 'sb':'Test Status Bar Message'}],
		['Documentation', 'http://www.softcomplex.com/products/tigra_menu/docs/'],
		['Forums', 'http://www.softcomplex.com/forum/forumdisplay.php?fid=29'],
		['TM Comparison Table', 'http://www.softcomplex.com/products/tigra_menu/docs/compare_menus.html'],
		['Menu Builder', '../_builder/index.html'],
	],
	['Product Demos', null, null,
		['Traditional Blue', '../demo1/index.html'],
		['White Steps', '../demo2/index.html'],
		['Inner HTML', '../demo3/index.html'],
		['All Together', '../demo4/index.html'],
		['Frames Targeting', '../demo5/index.html'],
		['Accessing IDs', '../demo6/index.html']
	],
	['Contact', 'http://www.softcomplex.com/support.html']
	*/
];

