// South Atlantic League l116 - {2:3 1:5}
var round = schedule.rounds;

// ----------------------------------------------------------------------
// round one

round[0].name = "Round 1";
round[0].summary = "Winners advance to the Finals"; // text at bottom of the table

var game = round[0].series[0].games;
round[0].series[0].matchup = "Lake County Captains vs Northern Division 2nd Half Winner";      // text at top of the table
game[0].tbd = ["Sept  3", "TBD @ TBD"];
game[1].tbd = ["Sept  5", "TBD @ TBD"];
game[2].tbd = ["Sept  6", "TBD @ TBD (If Necessary)"];

var game = round[0].series[1].games;
round[0].series[1].matchup = "Asheville Tourists vs Southern Division 2nd Half Winner";
game[0].tbd = ["Sept  3", "TBD @ TBD"];
game[1].tbd = ["Sept  5", "TBD @ TBD"];
game[2].tbd = ["Sept  6", "TBD @ TBD (If Necessary)"];

// ----------------------------------------------------------------------
// finals

round[1].name = "Finals";
round[1].summary = "";

var game = round[1].series[0].games;
round[1].series[0].matchup = "North Division Champion vs South Division Champion";
game[0].tbd = ["Sept 8", "TBD @ TBD"];
game[1].tbd = ["Sept 9", "TBD @ TBD"];
game[2].tbd = ["Sept 11", "TBD @ TBD"];
game[3].tbd = ["Sept 12", "TBD @ TBD (If Necessary)"];
game[4].tbd = ["Sept 13", "TBD @ TBD (If Necessary)"];
