// 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 = [
	//['City Government', null, null,
//		['Supported Browsers', null, null,
//		//	['Win32 Browsers', null, null, 
//			//	['Internet Explorer 5+'],
//				//['Netscape 6.0+'],
//			//	['Mozilla 0.9+'],
//			//	['AOL 5+'],
//			//	['Opera 5+'],
//			//	['Safari 3+'] // there must be no comma after the last element
//			//],
//			['Mac OS Browsers', null, null,
//				['Internet Explorer 5+'],
//				['Netscape 6.0+'],
//				['Mozilla 0.9+'],
//				['AOL 5+'],
//				['Safari 1.0+']
//			],
//			['KDE (Linux, FreeBSD)', null, null,
//				['Netscape 6.0+'],
//				['Mozilla 0.9+']
//			]
//		],
//		// 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'
//		['Unsupported Browsers', 'javascript:alert(\'hello world\')', null,
//			['Internet Explorer 4.x'],
//			['Netscape 4.x']
//		],
//		['Report test results', 'http://www.softcomplex.com/support.html'],
//	],
		
	
	['History ', 'history.php', null,
		
	],
	//menu2
	['Food & Dining ','', null,
		// this is how item scope settings are defined
		['Island Lounge', 'island.php'],
		['Rendezvous', 'rendezvous.php'],
		['Mixed Bar', 'mixedbar.php'],
		['Main Lawn', 'mainlawn.php'],

	],
	['Banquets   ','', null,
		// this is how item scope settings are defined
		['Island Lounge', 'island_ban.php'],
		['Centre Point', 'centrepoint.php'],
		['The Buttery', 'buttery.php'],
		['Swimming Pool Lawn', 'swimmingpool.php'],
		['New Lawn', 'newlawn.php'],
	],
	['Sports  ','', null,
		// this is how item scope settings are defined
		[' Tennis', 'tennis.php'],
		['Cricket', 'cricket.php'],
		['Bridge', 'bridge.php'],
		['Swimming', 'swimming_sports.php'],
		['Gymnasium', 'gymnasium.php'],
		['Badminton', 'badminton.php'],
		['Snooker', 'snooker.php'],
	],
	//menu3
	['Guindy Golf Annexe  ', 'http://www.madrasgymkhanaclub.com/golf/', null,
		
	],
	['Accommodation  ', 'accommodation.php', null,
		
	],
	['Affiliations ', 'affiliations.php', null,
		
	],
	
	['Gallery ', 'gallery.php', null,
		
	],
	
	
	
	
	
];

