// 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'],
//	],
	['&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Home &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|', 'index.htm', null,
		
	],
	
	
	
	//menu2
	['&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Our Services &nbsp;&nbsp;&nbsp;&nbsp;|', null, null,
		// this is how item scope settings are defined
		['Freight Services', '', null,
			['Air Freight','air.htm'],
			['Ocean Freight','ocean.htm'],
			['Sea-Air Services','air.htm#sea_air'],
			['Land Freight','land.htm'],
			
		],		
		// this is how multiple item scope settings are defined
		['Custom Clearance', 'custom.htm', null,
			
			
		],		
		['Insurance & Consultancy', 'insurance.htm', null,

			
		],		
		
		['Packing & Other Services', '', null ,
			['Packing,Removal,& Crating','packing.htm'],
			['Warehousing & Distribution','packing.htm#removal'],
			['Exhibition & Forwarding','exhib.htm'],
			['Project Cargo Handling','project.htm'],
		],
                          
	],
	
	//menu3
	['&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Company&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|', null, null,
		['About Us', 'aboutus.htm'],
		['Our Values', 'ourvalues.htm'],
		['Mission & Philosophy','missionphil.htm'],
		
		
	],
	
	['&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Contact Us &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|', 'contacts.htm', null,
		
	],
	['&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;Success Stories &nbsp;&nbsp; &nbsp;&nbsp;|', '', null,
		['Partners', 'partners.htm'],
		['Certificates', 'certificates.htm'],
	],
	['&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;News', 'news.htm', null,
		
	],
	
	
	
];


