if(typeof(MovableTypeJsonFeed) == 'undefined') MovableTypeJsonFeed = new Array(); 
MovableTypeJsonFeed["http://www.landscape.co.jp/news/"] = {
  "title": "news",
  "link": "http://www.landscape.co.jp/news/",
  "id": "tag:www.landscape.co.jp,2006:/news//2",
  "updated": "2009-12-22T09:08:53Z",
  
  "generator": "http://www.sixapart.com/movabletype/",
  "entry": [

          {
              "title": "超富裕層ビジネス書籍『ビリオネアビジネスの極意』にて、船井総合研究所がランドスケイプの分析を採用",
              "link": "http://www.landscape.co.jp/news/20091016_667.html",
              "id": "tag:www.landscape.co.jp,2009:/news//2.667",
              "summary": "　　データベースマーケティングを支援する、株式会社ランドスケイプ（本社：東京都新...",
              "author": "landscape",
              
              "published": "2009-10-16T01:00:00Z",
              "updated": "2009-12-22T09:08:53Z"
            }, 

          {
              "title": "見込み顧客開拓支援ツール『LBCクロス』を提供開始",
              "link": "http://www.landscape.co.jp/news/20090910_653.html",
              "id": "tag:www.landscape.co.jp,2009:/news//2.653",
              "summary": "～web上で市場浸透率の可視化・分析から、ターゲット企業情報抽出まで～ ＊＊＊＊...",
              "author": "landscape",
              
              "published": "2009-09-10T03:41:56Z",
              "updated": "2009-09-10T06:20:39Z"
            }  

         ]
};
if(typeof(MovableTypeJsonCallback) != 'undefined'){
   MovableTypeJsonCallback(MovableTypeJsonFeed["http://www.landscape.co.jp/news/"])
}


  function MovableTypeJsonCallback(data) {
  
    var content = document.getElementById("matome");
  
    var mydiv  = document.createElement("ul");
    mydiv.setAttribute("class", "section updates");
  
    for ( var i=0, entry  ; entry = data.entry[i]; i++){
      var myli  = document.createElement("li");
      myli.innerHTML = "<span>"
        + entry.published.substr(0,4) + "年"
		+ entry.published.substr(5,2) + "月" + entry.published.substr(8,2) + "日</span> "
        + "<a href='" + entry.link + "'>" + entry.title + "</a>";
      mydiv.appendChild(myli);
    }
    content.appendChild(mydiv);
  }

