
<!--
var myNavBar1 = new NavBar(0);
var dhtmlMenu;

dhtmlMenu = new NavBarMenu(190, 120);
dhtmlMenu.addItem(new NavBarMenuItem("Home", "../index.html"));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(120, 150);
dhtmlMenu.addItem(new NavBarMenuItem("iappear", "../apia/index.html"));
dhtmlMenu.addItem(new NavBarMenuItem("アイアピア", "../apia/index.html"));
dhtmlMenu.addItem(new NavBarMenuItem("パーマ実例集", "../apia/infoapia2.html"));
dhtmlMenu.addItem(new NavBarMenuItem("認定サロン紹介", "../apia/me-salon.html"));
dhtmlMenu.addItem(new NavBarMenuItem("アロマティカ製品購入", "../apia/aromatica.html"));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(120, 150);
dhtmlMenu.addItem(new NavBarMenuItem("Salon Gide", "index.html"));
dhtmlMenu.addItem(new NavBarMenuItem("全国の登録美容室", "zenkoku.html"));
dhtmlMenu.addItem(new NavBarMenuItem("都心エリア登録店", "tokyo-gid.html"));
dhtmlMenu.addItem(new NavBarMenuItem("大阪府下登録店", "osaka-gid.html"));
dhtmlMenu.addItem(new NavBarMenuItem("サロン登録詳細", "index.html"));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(120, 150);
dhtmlMenu.addItem(new NavBarMenuItem("Product", "../zairyou/index.html"));
dhtmlMenu.addItem(new NavBarMenuItem("美容材料とは！", "../zairyou/index.html"));
dhtmlMenu.addItem(new NavBarMenuItem("販売用美容材料", "../zairyou/indexinfo0.html"));
dhtmlMenu.addItem(new NavBarMenuItem("期間限定奉仕商品", "../zairyou/indexinfo1.html"));
dhtmlMenu.addItem(new NavBarMenuItem("最新業界情報", "../zairyou/indexinfo2.html"));
dhtmlMenu.addItem(new NavBarMenuItem("業務用材料リスト", "../zairyou/indexinfo3.html"));
dhtmlMenu.addItem(new NavBarMenuItem("トリートメントガイド", "../original/treatment.html"));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(120, 150);
dhtmlMenu.addItem(new NavBarMenuItem("Sebastian", "../wella/index.html"));
dhtmlMenu.addItem(new NavBarMenuItem("セバスティアン", "../wella/index.html"));
dhtmlMenu.addItem(new NavBarMenuItem("トルーコ化粧品", "../wella/trucco.html"));
dhtmlMenu.addItem(new NavBarMenuItem("クスタワックス", "../wella/info_xtah.html"));

myNavBar1.addMenu(dhtmlMenu);
dhtmlMenu = new NavBarMenu(120, 150);
dhtmlMenu.addItem(new NavBarMenuItem("matees", "../matees/index.html"));
dhtmlMenu.addItem(new NavBarMenuItem("プリグリオ配合成分", "../matees/element-01.html"));
dhtmlMenu.addItem(new NavBarMenuItem("プリグリオQ&A", "../matees/element-02.html"));
dhtmlMenu.addItem(new NavBarMenuItem("ネットショッピング", "../matees/priglio-04.html"));
dhtmlMenu.addItem(new NavBarMenuItem("プリグリオサロン", "../matees/priglio-07.html"));
myNavBar1.addMenu(dhtmlMenu);

myNavBar1.setColors(
  "#999999", // 大項目・小項目の枠の色
  "#ffffff", // 大項目の文字色
  "#999999", // 大項目の背景色
  "#ffffff", // 大項目のマウスオーバー時の文字色
  "#025ea9", // 大項目のマウスオーバー時の背景色
  "#666666", // 小項目の文字色
  "#dfe3e6", // 小項目の背景色
  "#ffffff", // 小項目のマウスオーバー時の文字色
  "#008080"  // 小項目のマウスオーバー時の背景色
)

myNavBar1.setAlign("left") // ナビゲーションバーの行揃え

var fullWidth;

function init() {
  fullWidth = getWindowWidth() 
    - (isMinNS4 && getWindowHeight() < getPageHeight() ? 16 : 0);
  myNavBar1.resize(fullWidth);
  myNavBar1.create();
  myNavBar1.setzIndex(2);
  myNavBar1.moveTo(0, 60); // ナビゲーションバーの絶対配置位置
}
// -->
