function ajax_update_entries()
  {
  $.post('http://live.lfc.pl/entries/get_entries/', function(data)
    {
    $('#gameText').html(data);
    });
  setTimeout('ajax_update_entries()', 30000);
  }
  
function ajax_update_score()
  {
  $.post('http://live.lfc.pl/game_data/get_score/', function(data)
    {
    $('#gameScore').html(data);
    });
  setTimeout('ajax_update_score()', 180000);
  }
  
function ajax_update_players()
  {
  $.post('http://live.lfc.pl/players/get_players/1', function(data)
    {
    $('#teamLeft').html(data);
    });
  $.post('http://live.lfc.pl/players/get_players/', function(data)
    {
    $('#teamRight').html(data);
    });
  setTimeout('ajax_update_players()', 180000);
  }
