// California League l110 - {2:3 2:5 1:5}
var round = schedule.rounds;

// ----------------------------------------------------------------------
// mini series

round[0].name = "Mini-Series"; // used to find graphic for round name
round[0].summary = "Winner advances to Division Finals"; // text at bottom of the table

var game = round[0].series[0].games;
round[0].series[0].matchup = "North Division 2nd Half Champion vs North #3 Seed";      // text at top of the table
game[0].tbd = ["Sept  7", "TBD @ TBD"];
game[1].tbd = ["Sept  8", "TBD @ TBD"];
game[2].tbd = ["Sept  9", "TBD @ TBD (If Necessary)"];

var game = round[0].series[1].games;
round[0].series[1].matchup = "South Division 2nd Half Champion vs South #3 Seed";
game[0].tbd = ["Sept  7", "TBD @ TBD"];
game[1].tbd = ["Sept  8", "TBD @ TBD"];
game[2].tbd = ["Sept  9", "TBD @ TBD (If Necessary)"];

// ----------------------------------------------------------------------
// division finals

round[1].name = "Division Finals"; // used to find graphic for round name
round[1].summary = "Winners advance to Finals"; // text at bottom of the table

var game = round[1].series[0].games;
round[1].series[0].matchup = "TBD vs TBD";      // text at top of the table
game[0].tbd = ["Sept 10", "TBD @ TBD"];
game[1].tbd = ["Sept 11", "TBD @ TBD"];
game[2].tbd = ["Sept 12", "TBD @ TBD"];
game[3].tbd = ["Sept 13", "TBD @ TBD (If Necessary)"];
game[4].tbd = ["Sept 14", "TBD @ TBD (If Necessary)"];

var game = round[1].series[1].games;
round[1].series[1].matchup = "TBD vs TBD";
game[0].tbd = ["Sept 10", "TBD @ TBD"];
game[1].tbd = ["Sept 11", "TBD @ TBD"];
game[2].tbd = ["Sept 12", "TBD @ TBD"];
game[3].tbd = ["Sept 13", "TBD @ TBD (If Necessary)"];
game[4].tbd = ["Sept 14", "TBD @ TBD (If Necessary)"];

// ----------------------------------------------------------------------
// final

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

var game = round[2].series[0].games;
round[2].series[0].matchup = "South Division Champion vs North Division Champion";
game[0].tbd = ["Sept 14", "TBD @ TBD"];
game[1].tbd = ["Sept 15", "TBD @ TBD"];
game[2].tbd = ["Sept 16", "TBD @ TBD"];
game[3].tbd = ["Sept 17", "TBD @ TBD (If Necessary)"];
game[4].tbd = ["Sept 18", "TBD @ TBD (If Necessary)"];

