function get_tweet(prmSecond){
  jQuery("#twitter").html("<img src=\"images/ajax-loader.gif\" />");
  jQuery.ajax({
    url: "js/get_tweet.php",
    type: "POST",
    async: true,
    cache: false,
    success: function(rtnStr){
      jQuery("#twitter").html(rtnStr);
      if (rtnStr.indexOf("ERROR", 0) != -1 || rtnStr.indexOf("Notice", 0) != -1){
      } else {
      }
    },
    error: function(XMLHttpRequest, textStatus, errorThrown){
      //通信に失敗した際に呼び出される
    }
  });
  //jQuery("#footer").append("TEST!<br />");
  setTimeout(
    function(){
      get_tweet(prmSecond);
    },
    1000 * prmSecond
  );
}

