// 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.htm' ],
		// 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'
		
	['About Us', null, null,
		['Corporate Snapshot', 'snapshot.htm'],
		['Recent News', 'news.htm'],
		['Press Release', 'pressrelease.htm']
		
	],
	['Products', 'products.htm', null,
		['CareGARD VSC&#39;s', 'caregard.htm'],
		['GapGARD', 'gapgard.htm'],
		['TireGARD', 'tiregard.htm'],
		['EtchGARD', 'etchgard.htm'],
		['SecureGARD', 'securegard.htm'],
		['MaintenanceCARE', 'maintenancecare.htm'],
		['Reinsurance Services', 'reinsurance_services.htm'],
		['Technology', 'technology.htm']
	],
	
	['Agency Services', null, null,
		['GA Advantage', 'ga_advantage.htm'],
		['Products', 'products.htm'],
		['New Agent', 'new_agent.htm'],
		['Print Forms', 'download_center.htm'],
		['Technology', 'technology.htm']
		
	],
	
	['Technology', 'technology.htm'
		],
	
	['Training and Recruiting', null, null,
		['AFG Training/Recruiting', 'training_and_recruiting.htm'],
		['AFG Training News/Updates', 'afgnews.htm'],
		['AFG Training >>', 'http://www.afgtraining.com']
		],
	
	
	['Contact', 'contact.htm']
];

