// 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 = [
	['Our Services', null, null,
		['Ocean Freight Services', null, null,
			['Full Container Load','fcl.htm'],
			['Less Than Container Load', 'ltcl.htm'],
			['Oversize & RORO Cargoes', 'onrc.htm'],
			['Special Commodity', 'specialcmdty.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'
		['Air Freight Services','airs.htm'],
			],
	['Our Destinations', null, null,
			['Liner Services', 'ls.htm'],	
			['Schedule & Transit', 'snt.htm'],
	],
	['Request A Rate', null, null,
			['Ocean Freight Rate','ofr.htm'],
			['Air Freight Rate', 'afr.htm']
	],
	['Make A Booking', null, null,
			['Ocean Freight Booking', 'sb.htm'],
			['Air Freight Booking','ab.htm']
	],	
	['E-Shipping', null, null,
			['Shipment Tracking','http://www.africashipping.net/intranet.htm'],
			['Account Login','http://www.africashipping.net/intranet.htm/login.php' ]
			
	],
	['Info & Links ', null, null,
			['Online Tools ', 'cer.htm'],
			['Containers Specs', 'cs.htm'],		
	],	
['Our Contacts', null, null,
			['The Head Office','tho.htm' ],
			['Worldwide Network', 'wn.htm']
	],
	
];

