/**
 * index.html クライアント
 */

var _busy_ = false;

function getNewContents() {

  if (_busy_) {
    //dump("ステータス", _busy_);
    return;
  }  

  _busy_ = true;

  $("#news").load("index_news.php");

  _busy_ = false;
}

