// 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 = [
	['Products', 'products.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'
		
	['Media & News', 'media_news.htm'],
		
	['Investors', null, null,
		// this is how item scope settings are defined
		['Investors Contacts', 'investors.htm'],
		// this is how multiple item scope settings are defined
		['Financials >', null, null,		 
		 ['Quaterly Results', 'quaterly_results.htm'],
		 ['Share Holding Pattern', 'financials_shp.htm'],
		 ['Highlights', 'highlights.htm'],
		 
		 ],
		['Chairmans Speak', 'chairmans_speak.htm'],
		['Investors Handbook >', null, null,
		 ['R & T Agent', 'rnt_agent.htm'],
		 ['Listing Info', 'listing_info.htm'],
		 
		 ],
		['Downloads >', null, null,		 
		 ['Annual Report', 'annual_report.htm'],
		['Share Holding Pattern', 'share_pattern.htm'],
		],
		 
	],	
	['About Us', null, null,	 
	 ['Company', 'company.htm'],
	 ['Board of Directors', 'bod.htm'],
	],
	
	['Careers', 'careers.htm'],
	
	['Contact', 'contact.asp'],
];

