// 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;&nbsp;&nbsp;|', 'index.htm', null,
		
	],
	
	
	//menu2
	['About Us &nbsp;&nbsp;&nbsp;&nbsp;|', 'about-us.htm', null,
		
	],
	['Infrastructure |', 'infrastructure.htm', null,
		
	],
	//menu3
	['&nbsp;&nbsp;&nbsp;Services &nbsp;&nbsp;&nbsp;|', null, null,
		[':: Door to Door Air Cargo', 'door-to-door-air-cargo.htm'],
		[':: Door to Door Train Cargo', 'door-to-door-train-cargo.htm'],
		[':: Octroi Clearance', 'octroi-clearance.htm'],
		[':: N Form Clearance', 'n-form-clearance.htm'],
		[':: Warehousing', 'warehousing.htm'],
		
	],
	['&nbsp;&nbsp;&nbsp;&nbsp;Employment  &nbsp;&nbsp;&nbsp;|', 'employment.htm', null,],
	['&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Network &nbsp;&nbsp;&nbsp;|', 'network.htm', null,],
	['&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Feedback &nbsp;&nbsp;&nbsp;|', 'feedback.htm', null,],
	
	['&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Contact Us &nbsp;&nbsp;&nbsp;', 'contact-us.htm', null,],
	
	
	
];

