//メニューのデータ項目を設定

	// menu_dataがメニュー画像つきのメインメニューを表す
	var menu_data = new Array(
		// [メニューID（自分で決めていい）,メニュー名,リンク先,ターゲット（省略可能）]という形式で、複数のメニューを「,」区切りで指定する
		['ship','<img src="img/shipsfact.gif" alt="Ship">','./profile_e.htm'],
		['reservation','<img src="img/reservation.gif" border="0" alt="Reservation and Boarding">','./ryoukin.htm'],
		['sailing','<img src="img/sailingschedule.gif"border="0" alt="sailing schedule">','./unkou.htm'],
		['fares','<img src="img/fares.gif"border="0" alt="fares">','./ryoukin.htm'],
		['payment','<img src="img/payment.gif"border="0" alt="fares">','./reservation-3.html'],
		['online','<img src="img/online.gif"border="0" alt="on-line reservation">','https://www.shanghai-ferry.co.jp/application/index.php?action_EmbarkApplicationDataInputInEnglish=true','_blank'],
		['access','<img src="img/access.gif"border="0" alt="Access to Ferry terminal">','./map.htm'],
		['route','<img src="img/route.gif"border="0" alt="Route Map">','./kouro.htm'],
		['photos','<img src="img/photosGallery.gif"border="0" alt="Photos Gallery">','./shashin1.html'],
		['saishinunko','<img src="img/TodaysSailingInformation.jpg"border="0" alt="saishinunko">','./TodaysSailingInformation.html']
	);
		// menu_data.メニューIDと指定することで、そのメニューのサブメニューを追加できる
		menu_data.ship = new Array(
			['profile','Profile','./profile_e.htm'],
			['plan','Deck Plan','./setsubi.htm'],
			['cabin','Cabin arrangements','./setsubi.htm#1'],
			['facilities','Onboard Facilities','./setsubi.htm#2'],
			['restaurant','Restaurant Menu','./foodmenu.htm']
		);
		menu_data.reservation = new Array(
			['tickets','Reservation and<br/>sale of tickets','./reservation-1.html'],
			['schedule','Sailing Schedule','./unkou.htm'],
			['boarding','Boarding “SU ZHOU HAO”>>','./reservation-4.html']
		);
			// menu_data.メニューID.メニューIDといった風にサブメニューの中にサブメニューを追加することも出来る
			menu_data.reservation.terminal = new Array(
						['oosaka','Osaka','./map.htm#1'],
						['shanghai','Shanghai','./map.htm#2']
					);
			menu_data.reservation.boarding = new Array(
			['visa','Passport and Visa','./reservation-4.html','_blank'],
			['items','Prohibited items','./reservation-4.html#Prohibited items','_blank'],
			['value','Articles of high value','./reservation-4.html#Articles','_blank'],
			['luggage','Luggage','./reservation-4.html#Luggage','_blank'],
			['terminal','Access to<br> Ferry terminal >>','./access_O.html','_blank']
		);
		menu_data.reservation.boarding.terminal = new Array(
					['oosaka','Osaka','./map.htm#1'],
					['shanghai','Shanghai','./map.htm#2']
				);
