

// -----------------------------------------------------------------------------------

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, 19,  x, 34,  x,  7, 42, 13,  3,  x, 10,  x],
/* 1 bush     */      [ 20,  y, 13, 28, 21,  7, 29,  x,  x,  x, 37,  x],
/* 2 clements */      [  x, 38,  y,  x, 49,  7,  x, 18,  6, 14, 21,  x],
/* 3 dulles   */      [ 27, 23,  x,  y,  9,  0, 24, 11,  x, 14, 14,  x],
/* 4 elkins   */      [  x, 42, 56, 28,  y,  x, 56, 35, 35, 33, 35,  x],
/* 5 hightower */     [ 45, 33, 40, 41,  x,  y, 35,  x, 38, 55, 35,  x],
/* 6 kempner  */      [ 28, 32,  x, 28, 63, 14,  y,  x,  7, 23, 14,  x],
/* 7 marshall */      [ 24,  x, 21,  9, 12,  x,  x,  y, 14, 21, 12,  x],
/* 8 travis */        [ 28,  x, 23,  x, 43,  0, 20, 37,  y, 52, 20,  x],
/* 9 willowridge */   [  x,  x,  6,  6, 13,  0, 13,  9,  6,  y,  7,  x],
/* 10 AA */           [ 27, 13, 35, 51, 28, 21, 41, 27, 23, 23,  y,  4],
/* 11 BB     */       [  x,  x,  x,  x,  x,  x,  x,  x,  x,  x,  8,  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]);


