
/* javascript for tony's collection index information   */
/* トニーズコレクション New Informatoin List */

/* ドキュメント読み込み時にInformation取得処理を行う */
$(document).ready(function(){
  // Document is ready
	getListInformation();
});

/* Information取得実態 */
function getListInformation(){
	
  var target_url = "/common/ajax/indexAjax.php";
  
  $.ajax({
	    url: target_url,   // リクエストURL
	    data : {} , 
	    dataType: "html",                     // jsonp
	    cache: true,                                       // キャッシュする
	    success: function( data ) {                  // 通信成功時にデータを表示
	  		$("div#indexInformationList").html(data)
	    },
	    error: function( XMLHttpRequest, textStatus, errorThrown ) {
		  var error_str = "";
		  error_str += "<dl class=\"clearfix newsbg01\">";
		  error_str += "<dt>----.--.--</dt>";
		  error_str += "<dd  class=\"ty01\">現在、新しいインフォメーションはありません。</dd>";
		  error_str += "</dl>";
  		  $("div#indexInformationList").html(data)
	    }
	  });
  return;
}


