// 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', 'en_home.php', null,

		

	],

	['About Us','en_about_background.php', null,

		// this is how item scope settings are defined

		['Background', 'en_about_background.php'],

		// this is how multiple item scope settings are defined

		['Our People', 'en_about_ourpeople.php'],

		['Join us', 'en_about_job.php']

		

	],

	['Our Products', 'en_products_tea.php', null,

		['Tea Products', 'en_products_tea.php'],

		['Sugar Products', 'en_products_sugar.php'],
	
		['Tea Lounge & Retail', 'en_products_hospitality.php'],
		

		['Beverages', 'en_products_beverages.php']

		

	],

	['Media Center', 'en_media_latest_news.php', null,

	    ['Latest News', 'en_media_latest_news.php'],

		['Campaigns', 'en_media_campaigns_ads.php'],

		['Mailling List', 'en_media_mailling_list.php'],
			
      ['Promotions', 'en_media_prom.php'],

		['Tea Articles', 'en_media_article.php']

	 ],

	

	['Contact Us','en_contact_info.php',null,

	    ['Contact Info', 'en_contact_info.php'],

		['Feedback Form', 'en_contact_feedback.php']

		

		

	]

	//['', null,null,null],

	//['English', 'en_home.php',null,null],

	//['&#1575;&#1604;&#1593;&#1585;&#1576;&#1610;', 'ar_home.php',null,null]

	

];



