/*
 +-------------------------------------------------------------------------------------+
 |                                                                                     |
 | 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 = 1;
  
   
    // top defines the number of pixels the top of the tab buttons are from top of page
   var top = 280;
	// left defines the # of pixels the left of the tab buttons are from the left side of the window. 
 	var left = 35;
	// Move the buttons to the right if the resolution is greater than 800...
    if (screen.width > 800) {left = screen.width / 4}; 
   var width = 585;  
   
//aaaaaaaaaaa
  /* var tab_off = "#e0e0e0";
     var tab_on = "silver";
  */
  
  /* modified by Mariola Walencik to implement new AGLC Colors*/
     var tab_off = "#ECE1CD";
     var tab_on = "#D2BDA8";
   
  // 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 an id = "T15"

      Samples are embedded within the definitions below.
   */

    rows[1][1] = "  Calgary ";          // Requires: <div id="T11" class="tab-body">  ... </div>
	rows[1][2] = "  Edmonton Region ";  // Requires: <div id="T12" class="tab-body">  ... </div>
    rows[1][3] = "  Southern ";         // Requires: <div id="T13" class="tab-body">  ... </div>
    rows[2][1] = "  Central ";          // Requires: <div id="T21" class="tab-body">  ... </div>
    rows[2][2] = "  North-East ";       // Requires: <div id="T22" class="tab-body">  ... </div>
    rows[2][3] = "  North-West ";       // Requires: <div id="T23" class="tab-body">  ... </div>

  
