/**
  * miniメニューバー
  */

/**
  * goto TOP
  */
terminal1_info = new Array() ;
terminal1_info[ 0 ] = "0001,TOP,#top,," ;
miniMenuGotoTop = new MenuBar( terminal1_info ) ;
miniMenuGotoTop.setShowPosition( DEF_MENUBAR_STYLE_RIGHT ) ;	/*	右寄せ		*/

/**
  * CLOSE
  */
terminal2_info = new Array() ;
terminal2_info[ 0 ] = "0001,閉じる,javascript:window.close(),," ;
miniMenuClose = new MenuBar( terminal2_info ) ;
miniMenuClose.setShowPosition( DEF_MENUBAR_STYLE_RIGHT ) ;		/*	右寄せ		*/

/**
  * goto TOP / CLOSE
  */
terminal3_info = new Array() ;
terminal3_info[ 0 ] = "0001,TOP,#top,," ;
terminal3_info[ 1 ] = "0001,閉じる,javascript:window.close(),," ;
miniMenuGotoTopAndClose = new MenuBar( terminal3_info ) ;
miniMenuGotoTopAndClose.setShowPosition( DEF_MENUBAR_STYLE_RIGHT ) ;	/*	右寄せ		*/


/*
 * goto TOP navi
 */
function putNaviGoToTop() {
	var		msg="" ;
	msg += "<table class='goto-top' cellspacing='0' cellpadding='0' border='0'>" ;
	msg += "<tr><td>|" ;
	msg += "<a href='#top' title='このページのトップへ'>ページトップへ</a>|" ;
	msg += "</td></tr>" ;
	msg += "</table>" ;
	document.write( msg ) ;
}


/*
 * goto TOP + history-back navi
 */
function putNaviGoToTopAndHistoryBack() {
	var		msg="" ;
	msg += "<table class='goto-top' cellspacing='0' cellpadding='0' border='0'>" ;
	msg += "<tr><td>|" ;
	msg += "<a href='#top' title='このページのトップへ'>ページトップへ</a>|" ;
	msg += "</td></tr>" ;
	msg += "<tr><td style='padding-top:5px;'>" ;
	msg += "<form><input type='button' value='前画面に戻る' onclick='history.back()' /></form>" ;
	msg += "</td></tr>" ;
	msg += "</table>" ;
	document.write( msg ) ;
}


/*	インスタンス生成：共通	*/
naviCommonData = new Array(
	  "0001,top,#top,このページのトップへ"
	, "0000,キャンプTOP,#camp_top,キャンプTOP"
	, "0000,日帰りドックTOP,#oneday_top,集中して練習したい方向けの１ＤＡＹレッスン　日帰りドック"
	, "0001,申込み方法,./how_to_entry.htm,申込み方法,"
	, "0000,申込みページ,./web_entry/entry_std.htm,WEBからのお申込み,"
	, "0001,helpdesk,#helpdesk,お問い合わせ先"
) ;
naviCommon = new MenuBar( naviCommonData ) ;
naviCommon.resetCurrentAssignTracking() ;
