/*
 +-------------------------------------------------------------------------------------+
 |                                                                                     |
 | DHTML Tabsets                                                                       |
 |                                                                                     |
 | Copyright and Legal Notices:                                                        |
 |                                                                                     |
 |   All source code, images, programs, files included in this distribution            |
 |   Copyright (c) 1996,1997,1998,1999,2000                                            |
 |                                                                                     |
 |          John C. Cokos  iWeb, Inc.                                                  |
 |          All Rights Reserved.                                                       |
 |                                                                                     |
 |                                                                                     |
 |   Web: http://www.iwebsoftware.com      Email: info@iwebsoftware.com                |
 |                                                                                     |
 +-------------------------------------------------------------------------------------+

    ** 
       Original Tabset Scripts were obtained from another source.  Cannot remember
       where I got them from.  I've manipulated the daylights out of it, to make it
       work in all browsers, and behave the way that I wanted it to.   If you are,
       or if you know the originater, please email me at the address noted above, and
       I will be happy to change the copyright notices herein to include you as
       the original source.
    **

*/


/*  
    Change the variables below as desired.
*/


   var rows = new Array;
   var num_rows = 9;
   var top = 100;
   var left = 10;
   var width = 350;

   var tab_off = "#d3e2ea"; //#32A2DE
   var tab_on = "#d3e2ea";
   var font_on = "#000000";
   var font_off = "#CFCFCF";

   // 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] = "Home";     // Requires: <div id="T11" class="tab-body">  ... </div>
   rows[2][1] = "Your Team";     // Requires: <div id="T21" class="tab-body">  ... </div>
   rows[3][1] = "Practice Areas";     // Requires: <div id="T31" class="tab-body">  ... </div>
   rows[4][1] = "Who Are We Helping";     // Requires: <div id="T41" class="tab-body">  ... </div>
   rows[5][1] = "Local Goings On";     // Requires: <div id="T51" class="tab-body">  ... </div>
   rows[6][1] = "You Ought To Know";     // Requires: <div id="T61" class="tab-body">  ... </div>
   rows[7][1] = "Links";     // Requires: <div id="T71" class="tab-body">  ... </div>
   rows[8][1] = "En Espa&#241;ol";    // Requires: <div id="T81" class="tab-body">  ... </div>
   rows[9][1] = "Contact Us";    // Requires: <div id="T91" class="tab-body">  ... </div>