// 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', 'index.php'
	],
	['Corporate Business', null, null,
		// this is how item scope settings are defined
		['Himalayan Restaurant','himalayanrestaurant.php',
			['Himalayan Restaurant - Doha', 'himalayanrestaurantdoha.php' 
			],
			['Himalayan Restaurant - Doha', 'himalayanrestaurantdoha.php' 
			],
			['Himalayan Restaurant - Dukhan', 'himalayanrestaurantdukhan.php'
			],
			['Himalayan Restaurant - Al Khor', 'himalayanrestaurantalkhor.php'
			],
			['Himalayan Restaurant - Sanaiaya', 'himalayanrestaurantsanaiya.php'
			],
			['Menu', 'menu.php'
			],
		
		],
		// 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'
		['Others','others.php'
		],

	],
	['Gallery', 'gallery.php'
	],
	['Contact', 'contact.php'
	],
	['Guest Book', 'guestbook.php']
];

