

// -----------------------------------------------------------------------------------

var scores_data = {};
    scores_data.getdata = function ()  { return scores_data.scores2006; };
    scores_data.getnames = function () { return scores_data.teamnames;  };
    var x = "x";
    var y = "y";

// A team's row has that team's points scored
// A team's column has the points scored against that team
        
scores_data.scores2006 = [
/*                       0   1   2   3   4   5   6   7   8   9  10 */
/*                       A   B   C   D   E   H   K   M   W  AA  BB */
/* 0 austin   */      [  y,  7, 14, 27, 24,  6,  7, 15, 41, 20, 27],
/* 1 bush     */      [ 12,  y,  0,  0, 21,  7,  6,  7, 15,  7,  2],
/* 2 clements */      [ 34, 45,  y, 37, 35, 30, 42, 21, 42, 21, 37],
/* 3 dulles   */      [ 20, 10, 20,  y, 42, 13,  7,  7, 21, 21,  9],
/* 4 elkins   */      [ 20, 35, 21, 44,  y, 28, 14, 21, 44, 47,  0],
/* 5 hightower */     [ 41, 30, 27, 34, 33,  y, 28, 30, 28,  7, 26],
/* 6 kempner  */      [ 24, 13,  7, 31, 19,  0,  y, 16, 17,  9, 10],
/* 7 marshall */      [ 16, 19, 20, 21, 26, 13, 12,  y, 14, 16, 21],
/* 8 willowridge */   [ 24,  3,  3, 28, 40,  3, 14,  0,  y,  0,  9],
/* 9  AA      */      [  7, 35, 20, 28,  0, 14, 13, 30, 22,  y,  x],
/* 10 BB      */      [ 28, 32, 21,  7, 22, 27, 27,  8, 13,  x,  y]
                ];

scores_data.teamnames = ["Austin", "Bush", "Clements", "Dulles", "Elkins", 
                        "Hightower", "Kempner", 
                         "Marshall", "Willowridge",  "AA", "BB"];

