// <SCRIPT LANGUAGE="JavaScript" SRC="index.js">
// note: indexData must come before references to data. 

indexLink = new Array
  (
    "index.html",   "ElliottRanch.com Home Page",  "Home",
    "pricelist.htm", "Prices of Available Lots", "Price List",
    "platElliottRanch.pdf", "Plat of Elliott Ranch (Adobe Acrobat file)", "Plat",
    "schools.html", "Hays Consolidated Independent School District", "Schools",
    "directions.html", "How to get to Elliott Ranch", "Directions",
    "contactinfo.html", "Contact the Broker or Developer", "Contact",
    "restrictions.htm", "Deed Restrictions", "Restrictions",
    "photos/index.html", "Pictures of Elliott Ranch", "Pictures", 
    "http://www.elliottranch.org","Link to Homeowners website","HOA Web Site"
  ); // +0=link,    +1=Status Line,     +2=Button Contents
var blanks = "'  '"; // for blank status
var iPicNum = 0; // used for unique ID/NAME tags.

var dotLine = "../";
if  (thisDir == "*") dotLine = "";
var arrowgif = dotLine+"img/arrow.gif";
var blankgif = dotLine+"img/blank.gif";

if (srcOK)
{ //preload only if Image() is supported...
  var arrow = new Image(); arrow.src=arrowgif;
  var blank = new Image(); blank.src=blankgif; // preLoads these two images
}