/*  
    Change the variables below as desired.
*/


   var rows = new Array;
   var num_rows = 1;
   var top = 255;
   var left = 230;
   var width = 400;

   var tab_off = "#e0e0e0";
   var tab_on = "silver";

   // 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] = "&nbsp;&nbsp;Български&nbsp;&nbsp;";     // Requires: <div id="T11" class="tab-body">  ... </div>
   rows[1][2] = "&nbsp;&nbsp;English&nbsp;&nbsp;";     // Requires: <div id="T11" class="tab-body">  ... </div>
 //  rows[1][3] = "&nbsp;&nbsp;German&nbsp;&nbsp;";     // Requires: <div id="T12" class="tab-body">  ... </div>
 //  rows[1][4] = "&nbsp;&nbsp;Spanish&nbsp;&nbsp;";     // Requires: <div id="T13" class="tab-body">  ... </div>
 //  rows[1][5] = "&nbsp;&nbsp;French&nbsp;&nbsp;";     // Requires: <div id="T14" class="tab-body">  ... </div>
   rows[1][3] = "&nbsp;&nbsp;Greek&nbsp;&nbsp;";     // Requires: <div id="T15" class="tab-body">  ... </div>   
  // rows[1][7] = "&nbsp;&nbsp;Italian&nbsp;&nbsp;";     // Requires: <div id="T16" class="tab-body">  ... </div>      
  // rows[1][8] = "&nbsp;&nbsp;Portugese&nbsp;&nbsp;";
