//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("information", "インフォメーション", "インフォメーション",  null, null);
	menu.addItem("whatsnew", "新着情報", "新着情報",  null, null);
	menu.addItem("shopping", "ショッピング", "ショッピング",  null, null);
	menu.addItem("bbspage", "コミュニティ", "コミュニティ",  null, null);
	menu.addItem("search", "検索エンジン", "検索エンジン",  null, null);
	menu.addItem("others", "その他", "その他",  null, null);

	menu.addSubItem("information", "会社概要", "会社概要",  "http://www.pearl-s.co.jp/pb/dynamicdrive/pro.html", "");
	menu.addSubItem("information", "トップページ", "トップに戻る",  "http://www.pearl-s.co.jp/pb/dynamicdrive/index.html", "");
	
	menu.addSubItem("whatsnew", "Whats New?", "Whats New?",  "http://www.pearl-s.co.jp/pb/dynamicdrive/what.html", "");

	menu.addSubItem("shopping", "ショッピング", "ショッピング",  "http://www.pearl-s.co.jp/pb/dynamicdrive/shop.html", "");

	menu.addSubItem("bbspage", "BBS Top Page", "BBSトップページ",  "http://www.pearl-s.co.jp/pb/dynamicdrive/bbs.html", "");
	menu.addSubItem("bbspage", "何でも相談室", "何でも相談室",  "http://www.pearl-s.co.jp/pb/dynamicdrive/bbs1.html", "");
	menu.addSubItem("bbspage", "お絵描き投稿掲示板", "お絵描き投稿掲示板",  "http://www.pearl-s.co.jp/pb/dynamicdrive/bbs2.html", "");
	menu.addSubItem("bbspage", "薬草ギャラリー", "薬草ギャラリー",  "http://www.pearl-s.co.jp/pb/dynamicdrive/pg.html", "");

	menu.addSubItem("search", "Yahoo!", "Yahoo!",  "http://www.yahoo.co.jp/", "_blank");
	menu.addSubItem("search", "Google", "Google",  "http://www.google.co.jp/", "_blank");
	menu.addSubItem("search", "Goo", "Goo",  "http://www.goo.ne.jp/", "_blank");
	menu.addSubItem("search", "Wikipedia", "Wikipedia",  "http://ja.wikipedia.org/wiki/%E3%83%A1%E3%82%A4%E3%83%B3%E3%83%9A%E3%83%BC%E3%82%B8", "_blank");
	menu.addSubItem("search", "Google Map", "Map",  "http://local.google.co.jp/", "_blank");

	menu.addSubItem("others", "リンクページ", "リンクページ",  "http://pearl-s.co.jp/pb/dynamicdrive/links.html", "");
	menu.addSubItem("others", "お問合せ", "お問合せ",  "http://www.pearl-s.co.jp/pb/dynamicdrive/q.html", "");


	menu.showMenu();
}
