//Tree Data(ここへTrreeメニューのデータをJSONで書きます)
// ["_open"] はメニュートグルを開きます。["_load",{"url":"ファイル名"}]はAjaxでurlをロードします。
  data=[
         ["副収入を稼ぐ" ,
           [
             ["_load",{"url":"../../menu_data_fuku.html"}]
           ]
         ],
         ["楽して稼ぐ 副収入",
           [
               ["_open"],
                ["ホームページ編",
                  [
                    ["はじめに","http://rich-money.info/easy/hp"],
                    ["ホームページ作成・管理","http://rich-money.info/easy/hp/how.html"],
                    ["ページのパーツ化","http://rich-money.info/easy/hp/parts.html"],
                    ["フッターのパーツ化","http://rich-money.info/easy/hp/footer.html"],
                    ["スタイルシートのパーツ化","http://rich-money.info/easy/hp/css.html"],
                    ["相互リンク管理DB","http://rich-money.info/easy/hp/xlink.html"]
                  ]
                ],
                ["メール編",
                  [
                    ["はじめに","http://rich-money.info/easy/mail/"],
                    ["メッセージルール","http://rich-money.info/easy/mail/rule.html"],
                    ["ルールの適用","http://rich-money.info/easy/mail/rule1.html"]
                  ]
                ],
                ["副収入管理編",
                  [
                    ["はじめに","http://rich-money.info/easy/incom/"],
                    ["副収入管理表","http://rich-money.info/easy/incom/excel.html"],
                    ["副収入管理DB","http://rich-money.info/easy/incom/access.html"],
                    ["セキュリティレベル変更","http://rich-money.info/easy/incom/sec_level.html"]
                  ]
                ],
                ["アクセスアップ編",
                  [
                   ["_open"],
                    ["はじめに","http://rich-money.info/easy/access_up/"],
                    ["SEO",
                      [
                        ["はじめに","http://rich-money.info/easy/access_up/seo/"],
                        ["SEOとは","http://rich-money.info/easy/access_up/seo/seo.html"],
                        ["HTMLタグ","http://rich-money.info/easy/access_up/seo/html.html"],
                        ["ホームページの名前","http://rich-money.info/easy/access_up/seo/name.html"],
                        ["外部からのリンク","http://rich-money.info/easy/access_up/seo/link.html"],
                        ["ページランク","http://rich-money.info/easy/access_up/seo/PageRank.html"],
                        ["SEOツール","http://rich-money.info/easy/access_up/seo/tool.html"]
                      ]
                    ]
                    ]
                  ]
                ]
         ],
         ["掲示板","http://rich-money.info/php/bbs/tree.php"],
         ["プロフィール","http://rich-money.info/profile.html"],
         ["更新履歴","http://rich-money.info/update.html"],
         ["相互リンク","http://rich-money.info/xlink.html"],
         ["SEO対策サーチエンジン","http://search.rich-money.info/"],
         ["サイトマップ","http://rich-money.info/sitemap.html"]
       ]

var test1;
//初期化
YAHOO.tato.treeIni = function(){
  test1 = new YAHOO.tato.tree("treeDiv1");  //"treeDiv1"はメニューを出力するDIV名です
  test1.mkTreeByArray(data);   //ここでメニュー用JSONデータを渡します

  // Ajaxロードを100/1000秒遅らせてアイコンを表示します。省略か0にすれば、遅延無し。
  YAHOO.tato.loadTreeData.delay =300; 
}

//ページ読み込み後にカスタマイズ関数YAHOO.tato.treeIni()を起動します
YAHOO.util.Event.addListener(window, "load", YAHOO.tato.treeIni);