var MENU_ITEMS = [
			['Home', 'javascript:changeLocation(\'home.html\')', null],
			['About Us', null, null,
				['Background','javascript:changeLocation(\'background.html\')'],
				['Organization History','javascript:changeLocation(\'history.html\')']
			],	
			[' Current Programs', null, null,
				['ShunYun Performing Arts 2010','javascript:changeLocation(\'/currentPrograms/dpa2010.html\')'],
				['ShunYun Performing Arts 2009','javascript:changeLocation(\'/currentPrograms/dpa.html\')'],
				['Journey to the East','javascript:changeLocation(\'/currentPrograms/journey.html\')'],
				['Cultural Workshops','javascript:changeLocation(\'/currentPrograms/cultural.html\')']
			],
			['Community Events',null,null, 
				['Moon Festival 2008 ', 'javascript:changeLocation(\'/events/moonFestival08.html\')'],
				['Others ', 'javascript:changeLocation(\'/events/others.html\')'],
			],
			['Support Us','javascript:changeLocation(\'/links.html\')', null],
			['Contact','javascript:changeLocation(\'/contact.html\')', null]
		];

		// level scope settins structure
		var MENU_TPL = [
		// root level configuration (level 0)
		{
			// item sizes
			'height': 24,
			'width': 154,
			// absolute position of the menu on the page (in pixels)
			// with centered content use Tigra Menu PRO or Tigra Menu GOLD
			'block_top':  0,
			'block_left': 50,
			// offsets between items of the same level (in pixels)
			'top':  0,
			'left': 129,
			// time delay before menu is hidden after cursor left the menu (in milliseconds)
			'hide_delay': 200,
			// submenu expand delay after the rollover of the parent
			'expd_delay': 200,
			// names of the CSS classes for the menu elements in different states
			// tag: [normal, hover, mousedown]
			'css' : {
				'outer' : ['m0l0oout', 'm0l0oover'],
				'inner' : ['m0l0iout', 'm0l0iover']
			}
		},
		// sub-menus configuration (level 1)
		// any omitted parameters are inherited from parent level
		{
			'height': 25,
			'width': 225,
			// position of the submenu relative to top left corner of the parent item
			'block_top': 25,
			'block_left': 0,
			'top': 23,
			'left': 0,
			'css' : {
				'outer' : ['m0l1oout', 'm0l1oover'],
				'inner' : ['m0l1iout', 'm0l1iover']
			}
		},
		// sub-sub-menus configuration (level 2)
		{
			'block_top': 5,
			'block_left': 160
		}
		// the depth of the menu is not limited
		// make sure there is no comma after the last element
		];


		new menu (MENU_ITEMS, MENU_TPL);

		function changeLocation(url)
		{
			document.location.href='http://www.newculturecenter.org/src/' + url;
		}
