﻿var Site =
{
  init: function() {
    var el = document.getElementById("actiontitle");
    if (!el) return;
    setInterval(Site.reloadPlayerCount, 10 * 1000);
  },
  reloadPlayerCount: function() {
    Live.get("/action");
  }
}
