/*  
    Change the variables below as desired.
*/


   var rows = new Array;
   var num_rows = 1;
   var top = 0;
   var left = 0;
   var width = 600;

   var tab_off = "#e0e0e0";
   var tab_on = "White";

   // Do NOT delete or change this line !!
   for ( var x = 1; x <= num_rows; x++ ) { rows[x] = new Array; }
 

   /*  
      Define as many ROWS as you like here.
      Note that for each row, you must have a corresponding "DIV"
      in your HTML, matching the row id. 

      ie  row[1][5] would need a div with and id of "15"

      Samples are embedded within the definitions below.
   */


   rows[1][1] = "BASICO";     // Requires: <div id="T11" class="tab-body">  ... </div>
   rows[1][2] = "MEDIO";     // Requires: <div id="T12" class="tab-body">  ... </div>
   rows[1][3] = "AVANZADO";     // Requires: <div id="T13" class="tab-body">  ... </div>
