// 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 = [
	//['City Government', 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'],
//	],
	['Home &nbsp;&nbsp;&nbsp;&nbsp;|', 'index-2.html', null,
		
	],
	
	
	
	//menu3
	['Solutions &nbsp;&nbsp;&nbsp;|', null, null,
		
		// this is how multiple item scope settings are defined
		['Grocery Industry', 'groceryIndustry.html', null,
			['Retail Grocer','retailgrocer.html'],
			['Distributor','distributor.html'],
			['Manufacturer','manufacturer.html'],
						
		],		
		['Other Retail', 'otherretail.html', null,
			
			
		],		
			],
	
	//menu4
	
	
	['&nbsp;&nbsp;Partners &nbsp;&nbsp;&nbsp;|', 'partners.html', null,
		
	],
	['&nbsp;&nbsp;News &nbsp;&nbsp;|', 'news.html', null,
		
	],
	['Events &nbsp;&nbsp;|', 'events.html', null,
		
	],
	
	['Contact Us &nbsp;&nbsp;', 'contact.html', null,
		
	],
	
];

