

// -----------------------------------------------------------------------------------

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  11 */
/*                       A   B   C   D   E   H   K   M   T   W  AA  BB */
/* 0 austin   */      [  y, 10, 10,  0, 10,  5,  0, 16, 17, 13,  x,  x],
/* 1 bush     */      [ 41,  y, 19, 38, 10, 14, 20,  7, 25, 13, 33,  x],
/* 2 clements */      [ 28, 30,  y, 20, 17, 10, 11, 17, 30, 35, 24,  x],
/* 3 dulles   */      [ 28, 37, 19,  y,  0, 12, 27, 21, 24, 33, 21,  x],
/* 4 elkins   */      [ 35, 17, 26, 21,  y,  0, 13, 35, 35, 17, 40,  x],
/* 5 hightower */     [ 30, 41, 35, 38, 23,  y, 29, 31, 28, 38, 21,  x],
/* 6 kempner  */      [ 49, 33, 14, 54, 49,  7,  y, 34, 25,  3, 21,  x],
/* 7 marshall */      [ 27, 24, 14, 20, 34,  6, 21,  y, 21,  0,  x,  x],
/* 8 travis */        [ 48, 32, 27, 26, 29,  7,  7, 24,  y, 21, 36,  x],
/* 9 willowridge */   [ 17, 20, 21, 14,  0, 13, 18, 21, 22,  y,  0,  x],
/* 10 AA */           [  x,  6, 14,  0, 34,  0, 22,  x, 25, 10,  y,  x],
/* 11 BB     */       [  x,  x,  x,  x,  x,  x,  x,  x,  x,  x,  x,  y]
                ];


scores_data.teamnames = ["Austin", "Bush", "Clements", "Dulles", "Elkins", 
                        "Hightower", "Kempner", "Marshall", "Travis", 
                        "Willowridge",  "AA", "BB"];
                        
xs = scores_data.scores2006;
xn = scores_data.teamnames;                        
//  alert("Done Defining scores_data.teamnames ... " + xs[11][10] + " " + xs[11][11] + " " + xn[11]);


