// 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', 'index.html'],
	['About', 'about.html',
			['About', 'about.html',],
		// this is how multiple item scope settings are defined
		['About HGS', 'about.html'],
		['President Bio', 'pres.html'],
		['News Updates', 'news.html'],
		['Careers', 'careers.html'],
	],
	['Products', 'products.html',
		// this is how item scope settings are defined
		['Products', '/products',],
		// this is how multiple item scope settings are defined
		['Products', 'products.html'],
		['SchoolCast K-12', 'schoolcast.html' ],
		['SchoolCast College Ed.', 'college.html'],
		['BandCast', 'bandcast.html'],
		['SportsCast', 'sportscast.html'],
		['ChurchCast', 'churchcast.html'],
		['RapidCast', 'rapidcast.html'],
		['CareCast', 'carecast.html', ],
		['MallCast', 'mallcast.html'],
		['TestPoint', 'testpoint.html'],
	],
		['Resources', 'resources.html',
		// this is how item scope settings are defined
		['Resources', 'resources',],
		// this is how multiple item scope settings are defined
		['FAQs', 'faq.html'],
		['Client Testimonials', 'testimonials.html'],
	],
	['Contact', 'contact.html'],
	['Demo', 'demo.html']
];

