/*
 +-------------------------------------------------------------------------------------+
 |                                                                                     |
 | 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;
   var top = 5;
   var left = 25;
   var width = 585;

   var tab_off = "#e0e0e0";
   var tab_on = "#ffff66";

   // 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] = "<div align=center><a href=http://www.thewebseye.com/index.htm class=topmenu>HOME PAGE</a></div>";     // Requires: <div id="T11" class="tab-body">  ... </div>
   rows[1][2] = "<div align=center><a href=http://www.thewebseye.com/wsc.htm class=topmenu>SET UP A WEB SITE</a></div>";     // Requires: <div id="T12" class="tab-body">  ... </div>
   rows[1][3] = "<!-- <div align=center><a href=http://www.thewebseye.com/online_business.htm class=topmenu>START AN ONLINE BUSINESS</a></div> -->";     // Requires: <div id="T13" class="tab-body">  ... </div>
   rows[1][4] = "<!-- <div align=center><a href=http://www.thewebseye.com/build-a-website.htm id=menu>Build a website with a template</a></div> -->";    // Requires: <div id="T24" class="tab-body">  ... </div>
   rows[1][5] = "<div align=center><a href=http://www.thewebseye.com/website-basics.htm class=topmenu>WEB DESIGN BASICS</a></div>";     // Requires: <div id="T16" class="tab-body">  ... </div>
   rows[1][6] = "<div align=center><a href=http://www.thewebseye.com/hosting.htm class=topmenu>WEB SITE HOSTING</a></div>";     // Requires: <div id="T17" class="tab-body">  ... </div>
   rows[1][7] = "<div align=center><a href=http://www.thewebseye.com/promotion.htm class=topmenu>WEB SITE PROMOTION</a></div>";     // Requires: <div id="T18" class="tab-body">  ... </div>
//   rows[1][5] = "<a class=topmenu href=javascript:help('HTML/index.htm')>Learn HTML</a>";     // Requires: <div id="T23" class="tab-body">  ... </div>
   