/*
 +-------------------------------------------------------------------------------------+
 |                                                                                     |
 | 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.
    **
       Traduccion: Iván Nieto Pérez
       El Código - http://www.elcodigo.net
    **    

*/


/*  
    Cambia las variables que aparecen a continuacion para adaptar el aspecto visual de las pestañas
*/


   var rows = new Array;
   var num_rows = 1;		//numero de filas
   var top = 5;		//posicion de las pestañas con respecto al borde superior
   				         //OJO, si cambia, hay que cambiar tambien el atributo top de tab-body en tab.css
   var left = 1;		//posicion de las pestañas con respecto al borde izquierdo
   var width = 420;		//anchura

   var tab_off = "#A3B176";	//color pestaña no seleccionada 62684E
   var tab_on = "#cccccc";	//color pestaña seleccionada A3B176

   // ¡¡ no edites o cambies esta linea !!
   for ( var x = 1; x <= num_rows; x++ ) { rows[x] = new Array; }
 

   /*  
      Define tantas filas como quieras en el bloque a continuacion.
      Observa que cada fila debe corresponderse con una etiqueta "DIV"
      en el codigo HTML, y que esta etiqueta debe tener como identificador
      T seguido de los numeros que indican fila y columna

      Por ejemplo:  row[1][5] necesita un div con un id igual a "T15"

      Observar los ejemplos que se muestran en los comentarios:
   */


  
   
   rows[1][1] = "Trigo";	        // Requires: <div id="T11" class="tab-button">  ... </div>
   rows[1][2] = "Maiz";	        // Requires: <div id="T12" class="tab-button">  ... </div>
   rows[1][3] = "Soja";	// Requires: <div id="T13" class="tab-button">  ... </div>
   rows[1][4] = "Girasol";	// Requires: <div id="T14" class="tab-button">  ... </div>
   rows[1][5] = "Dolar";	// Requires: <div id="T15" class="tab-button">  ... </div>
   
