if(typeof(MovableTypeJsonFeed) == 'undefined') MovableTypeJsonFeed = new Array(); 
MovableTypeJsonFeed["http://www.landscape.co.jp/business_solution/"] = {
 "title": "課題解決事例",
 "link": "http://www.landscape.co.jp/business_solution/",
 "id": "tag:www.landscape.co.jp,2006:/business_solution/4",
 "updated": "2011-10-17T03:45:39Z",
 
 "generator": "http://www.sixapart.com/movabletype/",
 "entry": [

          {
              "title": "[電気通信][BtoBマーケティング]顧客データ管理の外注化による「コスト削減」＆「精度向上」",
              "link": "http://www.landscape.co.jp/business_solution/2011/10/btob-4.html",
              "id": "tag:www.landscape.co.jp,2011:/business_solution//4.836",
              "summary": "■ クライアントプロフィール 業種 電気通信 商材 情報通信サービス/ソリューシ...",
              "author": "landscape",
              "category": "solution02","category": "solution05","category": "効率","category": "情報通信・ソフトウェア","category": "既存",
              "published": "2011-10-17T00:23:25Z",
              "updated": "2011-10-17T12:45:39Z",
              "time": "20111017"
            }  

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


  function MovableTypeJsonCallback(data) {
    
    var content = document.getElementById("solution_feed");
    
    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>";
//    myli.innerHTML =
//      "<strong class='red03'>【最新】</strong> " + 
//      "<a href='" + entry.link + "'>" + entry.title + "</a>";
      mydiv.appendChild(myli);
    }
    content.appendChild(mydiv);
  }

