// JavaScript Document
$(document).ready(function() {
  
  $('#spanTeam').toggle(function() {
    $(this).next('ul').slideDown();
  },
  function() {
    $(this).next('ul').slideUp();
  });
  
  nextMatchs();
  function nextMatchs() {
    $.ajax({
      type: 'POST',
      url: '../inc/nextMatch.php',
      success: function(result){
        $('#nextMatch').html(result);
        setTimeout(nextMatchs,5000);
      }
    });
  }  
});       
