// 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', 'default.aspx', null,
		
		],
	['About Us', 'aboutus.aspx', null,
		['Overview', 'Overview.aspx', {'tw':'_self'}],
		['Organisational Setup', 'organizationstru.aspx', {'tw':'_self'}],
		
		
		],
	['Tenders', '#', null,
		
		],
	
	
		// 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'
		
	
	
	['Contact Us', 'Contact Us.aspx',null,]
];


