/* *************************************************************
** JSALBUM.JS
** ==========
** This library contains global variables and functions to power
** the JS PhotoAlbum, as presented in 12/99's ScriptHead column.
** Use it in good health! Please maintain this header, and let
** me know what you've done with the code: rachmiel@hotmail.com 
**
** Author      Ver  Date     Comments
** ======      ===  ====     ========
** Rick Scott  1.0  12/1/99  First release
**
** Copyright 1999, Rick Scott, all rights reserved.
**
** USAGE
** =====
** To make the PhotoAlbum easy to customize, *all* of the code 
** you must change to create your own PhotoAlbum is in *this* 
** file (jsalbum.js). You'll find instructions below.
**
** Unless you are fluent in coding JS, don't mess around with 
** the other Album files:
**   jsalbum.html - frameset doc for entire PhotoAlbum
**   non-js.html - displays warning msg for JS-incapable users
**   lpage.html - frameset doc for left PhotoAlbum page
**   rpage.html - frameset doc for right PhotoAlbum page
**   thumb.html - displays/processes PhotoAlbum thumbnails
**   thumbctr.html - thumbnail control panel
**   photo.html - displays/processes full PhotoAlbum photos
**   photoctr.html - photo control panel
************************************************************* */


/* ********************************************************** */
/* GLOBAL VARIABLES                                           */
/* ================                                           */
/* The follow global variables are loaded into the Album's    */
/* topmost frameset document (jsalbum.html) to enable the     */
/* Album to "save state" (remember variable values).          */
/* ********************************************************** */

// don't change these!
var origPhotoObjectsArray = new Array();  // array of orig Photo objects
var currPhotoObjectsArray = new Array();  // array of current Photo objects
var currPhotoObjectsArrayIndex = 0;       // index into currPhotoObjectsArray
var currPhotoObjectsArrayLength = 0;      // length of currPhotoObjectsArray

// these you can change
var thumbctrFrameVisible = true;  // show/hide (true/false) thumbnail controls
var photoctrFrameVisible = true;  // show/hide (true/false) photo controls
var looping = true;               // enable/disable (true/false) < > looping

// don't change these!
var currKeyword = "All";   // currently selected keyword for thumbnail display
var currKeywordIndex = 0;  // index into keywordsArray

// Replace these keywordsArray strings with your keywords;
// they will show up as options in your Show: select-box.
// If you're not going to use keywords, create empty array:
//   var keywordsArray = new Array();
// (see KEYWORDS, below, for more on keyword usage)
var keywordsArray = new Array(
   "Hiestand",
   "Token Creek",
   "Elver",
   "Pro Tees",
   "AM Tees",
   "Baskets",
   "Signs"
   );


/* ********************************************************** */
/* Herein lies the Photo object constructor function. Don't   */
/* change this code (unless you really know what yer doin')!  */
/* ********************************************************** */

var photoNum = 0;  // index into origPhotoObjectsArray

function Photo(url, thumburl, caption, commentary, keywords)
  {
  this.url = url;                // Photo.url property
  this.thumburl = thumburl;      // Photo.thumburl property
  this.caption = caption;        // Photo.caption property
  this.commentary = commentary;  // Photo.commentary property
  this.keywords = keywords;      // Photo.keywords property

  this.suppLinksNum = arguments.length - 5;  // 6th+ args are suppLinks
  if (this.suppLinksNum > 0)
    {
    this.suppLinksArray = new Array();
    for (var i=0; i<this.suppLinksNum; i++)
      this.suppLinksArray[i] = arguments[i+5];
    }
  origPhotoObjectsArray[photoNum++] = this;  // to update thumbs dynamically
  }


/* ********************************************************** */
/* PHOTO OBJECTS                                              */
/* =============                                              */
/* Here's where you create your Photo objects, one for each   */
/* photo in your album. Use this syntax:                      */
/*                                                            */
/* var photoObjName = new Photo(                              */
/*     "photoURL",                                            */
/*     "thumbnailURL",                                        */
/*     "caption",                                             */
/*     "commentary",                                          */
/*     "keywords"                                             */
/*    );                                                      */
/*                                                            */
/*   photoObjName - any legal JS identifier                   */
/*   photoURL - absolute/relative URL of photo                */
/*   thumbnailURL - absolute/relative URL of thumbnail        */
/*   caption - string (use \' for ', don't use ")             */
/*   commentary - string (ditto on \' and ")                  */
/*   keywords - string of form: "keyword1, keyword2, etc."    */
/*                                                            */
/* To display 1-N supplemental links beneath the photo,       */
/* append 1-N of the following lines to the above construct:  */
/*                                                            */
/*   "linktext^linkURL"                                       */
/*                                                            */
/*   linktext - the text that is linked (underlined)          */
/*   ^ - required delimiter between linktext and linkURL      */
/*   linkURL - the URL to load when the link is clicked       */
/*                                                            */
/* Make sure that all your Photo() arguments are separated    */
/* by commas, except for the last argument. Here are two      */
/* examples; the first has 0 supp links, the second has 2:    */
/*                                                            */
/* var brownie = new Photo(                                   */
/*     "brownie.jpg",           // photoURL                   */
/*     "brownie-.jpg",          // thumbnailURL               */
/*     "Kodak Brownie Camera",  // caption                    */
/*     "This 1900 ad extols the virtues ...",  // commentary  */
/*     "1900-10"                // keywords                   */
/* );                                                         */
/*                                                            */
/* var robbery = new Photo(                                   */
/*     "robbery.jpg",           // photoURL                   */
/*     "robbery-.jpg",          // thumbnailURL               */
/*     "The Train Robbery",     // caption                    */
/*     "In this scene from the film ...",  // commentary      */
/*     "Trains, Movies",        // keywords                   */
/*     "Watch Movie^samp.mov",  // supplemental link 1        */
/*     "Jump to URL^jump.html"  // supplemental link 2        */
/* );                                                         */
/*                                                            */
/* KEYWORDS                                                   */
/* ========                                                   */
/* To enable the keyword feature to work (i.e., user selects  */
/* a keyword from the Show: select box to display only those  */
/* thumbnails that are associated with this keyword):         */
/*                                                            */
/* 1. Enter your keywords in the keywordsArray array (above). */
/* 2. Enter the appropriate keywords in each photo object's   */
/*    keywords argument (below).                              */
/* Note: Keyword spelling/case is critical!                   */
/*                                                            */
/* If you choose not to use keywords at all, create an empty  */
/* keywordsArray array (as described above) and leave all of  */
/* your photo objects' keywords arguments blank "".           */
/* ********************************************************** */
/*  "Jump to Alero.com for details^http://www.alero.com",*/
/*	"Back to mmotors.com^../index.html"*/
/*  "Jump to Auroracar.com for details^http://www.auroracar.com",*/
/*	"Back to mmotors.com^../index.html"*/
/*  /*"Jump to Bravadasuv.com for details^http://www.bravadasuv.com",*/
/*	"Back to mmotors.com^../index.html"*/
/*  /*"Jump to Intriguecar.com for details^http://www.intriguecar.com",*/
/*	"Back to mmotors.com^../index.html"*/
	
var h01p = new Photo(
    "../../image/madison/h01p.jpg", 
    "../../image/madison/h01p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #1 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 1 - Am: 241, Pro: 307  A straight shot uphill with the basket tucked around the corner on the left.</font>",
    "Hiestand, Pro Tees",
	"<a href=\"../../image/madison/h01p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var hiestand1 = new Photo(
    "../../image/madison/hiestand1.jpg", 
    "../../image/madison/hiestand1-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #1 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 1 - Am: 241, Pro: 307  A straight shot uphill with the basket tucked around the corner on the left.</font>",
    "Hiestand, AM Tees",
	"<a href=\"../../image/madison/hiestand1+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var h02p = new Photo(
    "../../image/madison/h02p.jpg", 
    "../../image/madison/h02p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #2 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 2 - Am: 264, Pro: 354  Right placement shown.  You can throw straight ahead through the trees, or locals have been known to throw a righty hyzer shot that comes in through the trees along the path from hole 2 to 3.  Left placement is in by the clump of three trees shown in the basket photo.</font>",
    "Hiestand, Pro Tees",
	"<a href=\"../../image/madison/h02p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var hiestand2a = new Photo(
    "../../image/madison/hiestand2a.jpg", 
    "../../image/madison/hiestand2a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #2 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 2 - Am: 264, Pro: 354  Right placement shown.  You can throw straight ahead through the trees, or locals have been known to throw a righty hyzer shot that comes in through the trees along the path from hole 2 to 3.  Left placement is in by the clump of three trees shown in the basket photo.</font>",
    "Hiestand, AM Tees",
	"<a href=\"../../image/madison/hiestand2a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var hiestand2b = new Photo(
    "../../image/madison/hiestand2b.jpg", 
    "../../image/madison/hiestand2b-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #2 basket area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole number 2's basket is guarded by trees.</font>",
    "Hiestand, Baskets",
	"<a href=\"../../image/madison/hiestand2b+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var hiestand3 = new Photo(
    "../../image/madison/hiestand3.jpg", 
    "../../image/madison/hiestand3-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #3 amateur and pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 3 - Am/Pro: 476: Straight ahead placement shown.  Hole number 3 offers a great chance to stretch out your arm and throw a long downhill shot.  Alternate placement is across the drainage ditch and well to the left.</font>",
    "Hiestand, AM Tees, Pro Tees",
	"<a href=\"../../image/madison/hiestand3+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var h04p = new Photo(
    "../../image/madison/h04p.jpg", 
    "../../image/madison/h04p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #4 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 4 - Am: 250, Pro: 363  Near placement shown.  The elevation at the end of the fairway makes this one throw longer than it looks.  Be careful with the trees to the right of the basket area, if you land in there you could have a difficult upshot.  Long placement is back and a little left, and is right at the edge of a steep drop.  If your putt goes past the basket there, you will find a new meaning to the term upshot.</font>",
    "Hiestand, Pro Tees",
	"<a href=\"../../image/madison/h04p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var hiestand4 = new Photo(
    "../../image/madison/hiestand4.jpg", 
    "../../image/madison/hiestand4-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #4 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 4 - Am: 250, Pro: 363  Near placement shown.  The elevation at the end of the fairway makes this one throw longer than it looks.  Be careful with the trees to the right of the basket area, if you land in there you could have a difficult upshot.  Long placement is back and a little left, and is right at the edge of a steep drop.  If your putt goes past the basket there, you will find a new meaning to the term upshot.</font>",
    "Hiestand, AM Tees",
	"<a href=\"../../image/madison/hiestand4+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var h05p = new Photo(
    "../../image/madison/h05p.jpg", 
    "../../image/madison/h05p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #5 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 5 - Am: 320, Pro: 457  Right placement shown.  A long forehand or well placed anhyzer shot is called for here.  You'll want to stay out of the dense trees on the right.  Alternate placement is straight and behind the single tree in the fairway.</font>",
    "Hiestand, Pro Tees",
	"<a href=\"../../image/madison/h05p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var hiestand5a = new Photo(
    "../../image/madison/hiestand5a.jpg", 
    "../../image/madison/hiestand5a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #5 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 5 - Am: 320, Pro: 457  Right placement shown.  A long forehand or well placed anhyzer shot is called for here.  You'll want to stay out of the dense trees on the right.  Alternate placement is straight and behind the single tree in the fairway.</font>",
    "Hiestand, AM Tees",
	"<a href=\"../../image/madison/hiestand5a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var hiestand5b = new Photo(
    "../../image/madison/hiestand5b.jpg", 
    "../../image/madison/hiestand5b-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #5 basket area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Hiestand, Baskets",
	"<a href=\"../../image/madison/hiestand5b+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var h06p = new Photo(
    "../../image/madison/h06p.jpg", 
    "../../image/madison/h06p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #6 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 6 - Am: 260, Pro: 343 Several large trees create a canopy that will stop high shots, and will test your accuracy as you weave a shot through them.</font>",
    "Hiestand, Pro Tees",
	"<a href=\"../../image/madison/h06p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var hiestand6 = new Photo(
    "../../image/madison/hiestand6.jpg", 
    "../../image/madison/hiestand6-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #6 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 6 - Am: 260, Pro: 343 Several large trees create a canopy that will stop high shots, and will test your accuracy as you weave a shot through them.</font>",
    "Hiestand, AM Tees",
	"<a href=\"../../image/madison/hiestand6+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var h07p = new Photo(
    "../../image/madison/h07p.jpg", 
    "../../image/madison/h07p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #7 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 7 - Am: 180, Pro: 261  Left placement shown.  A shorter, slightly downhill hole, this one tests your placement.  A putter is not an uncommon sight on the teepad.  Alternate placement is downhill in the trees to the right.</font>",
    "Hiestand, Pro Tees",
	"<a href=\"../../image/madison/h07p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var hiestand7 = new Photo(
    "../../image/madison/hiestand7.jpg", 
    "../../image/madison/hiestand7-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #7 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 7 - Am: 180, Pro: 261  Left placement shown.  A shorter, slightly downhill hole, this one tests your placement.  A putter is not an uncommon sight on the teepad.  Alternate placement is downhill in the trees to the right.</font>",
    "Hiestand, AM Tees",
	"<a href=\"../../image/madison/hiestand7+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var h08p = new Photo(
    "../../image/madison/h08p.jpg", 
    "../../image/madison/h08p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #8 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 8 - Am: 244, Pro: 300  Near placement shown.  A narrow fairway with dense trees early, it opens up some as you start going uphill at the end.  Alternate placement is a little farther back.</font>",
    "Hiestand, Pro Tees",
	"<a href=\"../../image/madison/h08p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var hiestand8 = new Photo(
    "../../image/madison/hiestand8.jpg", 
    "../../image/madison/hiestand8-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #8 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 8 - Am: 244, Pro: 300  Near placement shown.  A narrow fairway with dense trees early, it opens up some as you start going uphill at the end.  Alternate placement is a little farther back.</font>",
    "Hiestand, AM Tees",
	"<a href=\"../../image/madison/hiestand8+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var h09p = new Photo(
    "../../image/madison/h09p.jpg", 
    "../../image/madison/h09p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #9 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 9 - Am: 215, Pro: 271 Use an anhyzer shot from the pro tees. From the ams, trees on the right prevent a hyzer approach, so keep it straight.</font>",
    "Hiestand, Pro Tees",
	"<a href=\"../../image/madison/h09p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var hiestand9 = new Photo(
    "../../image/madison/hiestand9.jpg", 
    "../../image/madison/hiestand9-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #9 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 9 - Am: 215, Pro: 271 Use an anhyzer shot from the pro tees. From the ams, trees on the right prevent a hyzer approach, so keep it straight.</font>",
    "Hiestand, AM Tees",
	"<a href=\"../../image/madison/hiestand9+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var h10p = new Photo(
    "../../image/madison/h10p.jpg", 
    "../../image/madison/h10p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #10 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 10 - Am: 301, Pro: 537 Near placement shown.  From the pro tees, it's a long righty hyzer shot.  Ams can go for the long anhyzer shot.  The trees to the right are thin enough that a disc can go a ways in, but thick enough to make getting out tough.  Alternate placement is back and to the right and is under a tree.</font>",
    "Hiestand, Pro Tees",
	"<a href=\"../../image/madison/h10p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var hiestand10 = new Photo(
    "../../image/madison/hiestand10.jpg", 
    "../../image/madison/hiestand10-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #10 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 10 - Am: 301, Pro: 537 Near placement shown.  From the pro tees, it's a long righty hyzer shot.  Ams can go for the long anhyzer shot.  The trees to the right are thin enough that a disc can go a ways in, but thick enough to make getting out tough.  Alternate placement is back and to the right and is under a tree.</font>",
    "Hiestand, AM Tees",
	"<a href=\"../../image/madison/hiestand10+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var h11p = new Photo(
    "../../image/madison/h11p.jpg", 
    "../../image/madison/h11p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #11 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 11 - Am: 208, Pro: 300  You have a good opening for an anhyzer or forehand shot here.  Ams can try to go straight, but a tree most of the way down the fairway makes a straight approach a bit tight.</font>",
    "Hiestand, Pro Tees",
	"<a href=\"../../image/madison/h11p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var hiestand11 = new Photo(
    "../../image/madison/hiestand11.jpg", 
    "../../image/madison/hiestand11-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #11 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 11 - Am: 208, Pro: 300  You have a good opening for an anhyzer or forehand shot here.  Ams can try to go straight, but a tree most of the way down the fairway makes a straight approach a bit tight.</font>",
    "Hiestand, AM Tees",
	"<a href=\"../../image/madison/hiestand11+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var h12p = new Photo(
    "../../image/madison/h12p.jpg", 
    "../../image/madison/h12p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #12 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 12 - Am: 210, Pro: 315  Going downhill again, this hole has some tall trees guarding the dogleg turn into the basket on the right.</font>",
    "Hiestand, Pro Tees",
	"<a href=\"../../image/madison/h12p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var hiestand12a = new Photo(
    "../../image/madison/hiestand12a.jpg", 
    "../../image/madison/hiestand12a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #12 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 12 - Am: 210, Pro: 315  Going downhill again, this hole has some tall trees guarding the dogleg turn into the basket on the right.</font>",
    "Hiestand, AM Tees",
	"<a href=\"../../image/madison/hiestand12a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var hiestand12b = new Photo(
    "../../image/madison/hiestand12b.jpg", 
    "../../image/madison/hiestand12b-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #12 basket area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">The basket has a tree line for a backstop.</font>",
    "Hiestand, Baskets",
	"<a href=\"../../image/madison/hiestand12b+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var h13p = new Photo(
    "../../image/madison/h13p.jpg", 
    "../../image/madison/h13p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #13 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 13 - Am: 198, Pro 315:  Keep it straight and level or you'll be bouncing off some trees.</font>",
	"Hiestand, Pro Tees",
	"<a href=\"../../image/madison/h13p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var h13a = new Photo(
    "../../image/madison/h13a.jpg", 
    "../../image/madison/h13a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #13 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 13 - Am: 198, Pro 315:  Keep it straight and level or you'll be bouncing off some trees.</font>",
	"Hiestand, AM Tees",
	"<a href=\"../../image/madison/h13a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var h14p = new Photo(
    "../../image/madison/h14p.jpg", 
    "../../image/madison/h14p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #14 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 14 - Am: 259, Pro: 359  The signature hole of the course, you have a great view of the capital from the basket area.  A wide variety of shots can be used here, just stay clear of the head high bushes that line the left side of the fairway.</font>",
	"Hiestand, Pro Tees",
	"<a href=\"../../image/madison/h14p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var h14a = new Photo(
    "../../image/madison/h14a.jpg", 
    "../../image/madison/h14a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #14 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 14 - Am: 259, Pro: 359  The signature hole of the course, you have a great view of the capital from the basket area.  A wide variety of shots can be used here, just stay clear of the head high bushes that line the left side of the fairway.</font>",
	"Hiestand, AM Tees",
	"<a href=\"../../image/madison/h14a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var h15p = new Photo(
    "../../image/madison/h15p.jpg", 
    "../../image/madison/h15p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #15 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 15 - Am: 319, Pro: 477  This hole has a wide sloping fairway with thick trees down each side.</font>",
    "Hiestand, Pro Tees",
	"<a href=\"../../image/madison/h15p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var hiestand15 = new Photo(
    "../../image/madison/hiestand15.jpg", 
    "../../image/madison/hiestand15-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #15 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 15 - Am: 319, Pro: 477  This hole has a wide sloping fairway with thick trees down each side.</font>",
    "Hiestand, AM Tees",
	"<a href=\"../../image/madison/hiestand15+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var h16p = new Photo(
    "../../image/madison/h16p.jpg", 
    "../../image/madison/h16p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #16 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 16 - Am: 260, Pro: 351  Right placement shown.  The narrow fairway limits your options from the pro tees.  From the am tees you can play it straight up the middle, or try hyzering in over the trees.  Alternate placement is to the left of the fairway.</font>",
	"Hiestand, Pro Tees",
	"<a href=\"../../image/madison/h16p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var h16a = new Photo(
    "../../image/madison/h16a.jpg", 
    "../../image/madison/h16a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #16 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 16 - Am: 260, Pro: 351  Right placement shown.  The narrow fairway limits your options from the pro tees.  From the am tees you can play it straight up the middle, or try hyzering in over the trees.  Alternate placement is to the left of the fairway.</font>",
	"Hiestand, AM Tees",
	"<a href=\"../../image/madison/h16a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var h16b = new Photo(
    "../../image/madison/h16b.jpg", 
    "../../image/madison/h16b-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #16 basket area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
	"Hiestand, Baskets",
	"<a href=\"../../image/madison/h16b+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var h17p = new Photo(
    "../../image/madison/h17p.jpg", 
    "../../image/madison/h17p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #17 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 17 - Am: 236, Pro: 310  The basket is straight uphill and is guarded in front by two trees.</font>",
	"Hiestand, Pro Tees",
	"<a href=\"../../image/madison/h17p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var h17a = new Photo(
    "../../image/madison/h17a.jpg", 
    "../../image/madison/h17a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #17 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 17 - Am: 236, Pro: 310  The basket is straight uphill and is guarded in front by two trees.</font>",
	"Hiestand, AM Tees",
	"<a href=\"../../image/madison/h17a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var h18p = new Photo(
    "../../image/madison/h18p.jpg", 
    "../../image/madison/h18p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #18 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 18 - Am: 259, Pro: 357  A blind slightly downhill shot, the basket is around the corner to the left.  The last hole of the course leaves you many options for shots.</font>",
	"Hiestand, Pro Tees",
	"<a href=\"../../image/madison/h18p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var h18a = new Photo(
    "../../image/madison/h18a.jpg", 
    "../../image/madison/h18a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #18 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hole 18 - Am: 259, Pro: 357  A blind slightly downhill shot, the basket is around the corner to the left.  The last hole of the course leaves you many options for shots.</font>",
	"Hiestand, AM Tees",
	"<a href=\"../../image/madison/h18a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var h18b = new Photo(
    "../../image/madison/h18b.jpg", 
    "../../image/madison/h18b-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Hiestand hole #18 basket area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
	"Hiestand, Baskets",
	"<a href=\"../../image/madison/h18b+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc1p = new Photo(
    "../../image/madison/tc1p.jpg", 
    "../../image/madison/tc1p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #1 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 387 to 441 -	open slight uphill into prevailing winds on the plains with pins near solitary tree</font>",
    "Token Creek, Pro Tees",
	"<a href=\"../../image/madison/tc1p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc1ps = new Photo(
    "../../image/madison/tc1ps.jpg", 
    "../../image/madison/tc1ps-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #1 pro tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc1ps+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc1 = new Photo(
    "../../image/madison/tc1.jpg", 
    "../../image/madison/tc1-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #1 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">AM: 282 to 330 - open slight uphill into prevailing winds on the plains with pins near solitary tree</font>",
    "Token Creek, AM Tees",
	"<a href=\"../../image/madison/tc1+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc1s = new Photo(
    "../../image/madison/tc1s.jpg", 
    "../../image/madison/tc1s-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #1 amateur tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc1s+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc2p = new Photo(
    "../../image/madison/tc2p.jpg", 
    "../../image/madison/tc2p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #2 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 450 to 530 -	somewhat open with pine trees near the pins</font>",
    "Token Creek, Pro Tees",
	"<a href=\"../../image/madison/tc2p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc2ps = new Photo(
    "../../image/madison/tc2ps.jpg", 
    "../../image/madison/tc2ps-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #2 pro tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc2ps+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc2a = new Photo(
    "../../image/madison/tc2a.jpg", 
    "../../image/madison/tc2a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #2 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 265 to 350	- somewhat open with pine trees near the pin</font>",
    "Token Creek, AM Tees",
	"<a href=\"../../image/madison/tc2a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc2s = new Photo(
    "../../image/madison/tc2s.jpg", 
    "../../image/madison/tc2s-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #2 amateur tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc2s+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc2b = new Photo(
    "../../image/madison/tc2b.jpg", 
    "../../image/madison/tc2b-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #2 basket area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Baskets",
	"<a href=\"../../image/madison/tc2b+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc3p = new Photo(
    "../../image/madison/tc3p.jpg", 
    "../../image/madison/tc3p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #3 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 275 to 320 - trees lined fairway with blind pin placements</font>",
    "Token Creek, Pro Tees",
	"<a href=\"../../image/madison/tc3p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc3ps = new Photo(
    "../../image/madison/tc3ps.jpg", 
    "../../image/madison/tc3ps-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #3 pro tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc3ps+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc3 = new Photo(
    "../../image/madison/tc3.jpg", 
    "../../image/madison/tc3-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #3 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 187 to 232 - trees lined fairway with blind pin placements</font>",
    "Token Creek, AM Tees",
	"<a href=\"../../image/madison/tc3+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc3s = new Photo(
    "../../image/madison/tc3s.jpg", 
    "../../image/madison/tc3s-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #3 amateur tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc3s+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc4p = new Photo(
    "../../image/madison/tc4p.jpg", 
    "../../image/madison/tc4p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #4 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 255 to 321 - a tight fairway, with road OB on right and a variety of trees near the pins</font>",
    "Token Creek, Pro Tees",
	"<a href=\"../../image/madison/tc4p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc4ps = new Photo(
    "../../image/madison/tc4ps.jpg", 
    "../../image/madison/tc4ps-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #4 pro tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc4ps+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc4 = new Photo(
    "../../image/madison/tc4.jpg", 
    "../../image/madison/tc4-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #4 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 192 to 258 - a tight fairway, with road OB on right and a variety of trees near the pins</font>",
    "Token Creek, AM Tees",
	"<a href=\"../../image/madison/tc4+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc4s = new Photo(
    "../../image/madison/tc4s.jpg", 
    "../../image/madison/tc4s-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #4 amateur tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc4s+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc5p = new Photo(
    "../../image/madison/tc5p.jpg", 
    "../../image/madison/tc5p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #5 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 535 to 610 - longest hole with pins surrounded by handsome oaks</font>",
    "Token Creek, Pro Tees",
	"<a href=\"../../image/madison/tc5p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc5ps = new Photo(
    "../../image/madison/tc5ps.jpg", 
    "../../image/madison/tc5ps-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #5 pro tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc5ps+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc5a = new Photo(
    "../../image/madison/tc5a.jpg", 
    "../../image/madison/tc5a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #5 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 378 to 455 - longest hole with pins surrounded by handsome oaks</font>",
    "Token Creek, AM Tees",
	"<a href=\"../../image/madison/tc5a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc5s = new Photo(
    "../../image/madison/tc5s.jpg", 
    "../../image/madison/tc5s-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #5 amateur tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc5s+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc5b = new Photo(
    "../../image/madison/tc5b.jpg", 
    "../../image/madison/tc5b-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #5 basket area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Baskets",
	"<a href=\"../../image/madison/tc5b+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc6p = new Photo(
    "../../image/madison/tc6p.jpg", 
    "../../image/madison/tc6p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #6 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 234 to 291 - uphill onto pin placements on any of 3 elevated rock walls</font>",
    "Token Creek, Pro Tees",
	"<a href=\"../../image/madison/tc6p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc6ps = new Photo(
    "../../image/madison/tc6ps.jpg", 
    "../../image/madison/tc6ps-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #6 pro tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc6ps+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc6 = new Photo(
    "../../image/madison/tc6.jpg", 
    "../../image/madison/tc6-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #6 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 162 to 219 - uphill onto pin placements on any of 3 elevated rock walls</font>",
    "Token Creek, AM Tees",
	"<a href=\"../../image/madison/tc6+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc6s = new Photo(
    "../../image/madison/tc6s.jpg", 
    "../../image/madison/tc6s-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #6 amateur tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc6s+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc7p = new Photo(
    "../../image/madison/tc7p.jpg", 
    "../../image/madison/tc7p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #7 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 275 - down hill with split fairway around a group of trees on to elevated rock wall</font>",
    "Token Creek, Pro Tees",
	"<a href=\"../../image/madison/tc7p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc7ps = new Photo(
    "../../image/madison/tc7ps.jpg", 
    "../../image/madison/tc7ps-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #7 pro tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc7ps+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc7 = new Photo(
    "../../image/madison/tc7.jpg", 
    "../../image/madison/tc7-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #7 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 205 - down hill with split fairway around a group of trees on to elevated rock wall</font>",
    "Token Creek, AM Tees",
	"<a href=\"../../image/madison/tc7+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc7s = new Photo(
    "../../image/madison/tc7s.jpg", 
    "../../image/madison/tc7s-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #7 amateur tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc7s+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc8p = new Photo(
    "../../image/madison/tc8p.jpg", 
    "../../image/madison/tc8p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #8 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 267 to 321 - beautifully wooded hole with mature oaks</font>",
    "Token Creek, Pro Tees",
	"<a href=\"../../image/madison/tc8p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc8ps = new Photo(
    "../../image/madison/tc8ps.jpg", 
    "../../image/madison/tc8ps-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #8 pro tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc8ps+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc8 = new Photo(
    "../../image/madison/tc8.jpg", 
    "../../image/madison/tc8-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #8 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 165 to 225 - beautifully wooded hole with mature oaks</font>",
    "Token Creek, AM Tees",
	"<a href=\"../../image/madison/tc8+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc8s = new Photo(
    "../../image/madison/tc8s.jpg", 
    "../../image/madison/tc8s-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #8 amateur tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc8s+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc9p = new Photo(
    "../../image/madison/tc9p.jpg", 
    "../../image/madison/tc9p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #9 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 277 to 324 - lovely wooded fairway, dog leg right into wooded pin placements</font>",
    "Token Creek, Pro Tees",
	"<a href=\"../../image/madison/tc9p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc9ps = new Photo(
    "../../image/madison/tc9ps.jpg", 
    "../../image/madison/tc9ps-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #9 pro tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc9ps+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc9 = new Photo(
    "../../image/madison/tc9.jpg", 
    "../../image/madison/tc9-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #9 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 202 to 258 - lovely wooded fairway, dog leg right into wooded pin placements</font>",
    "Token Creek, AM Tees",
	"<a href=\"../../image/madison/tc9+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc9s = new Photo(
    "../../image/madison/tc9s.jpg", 
    "../../image/madison/tc9s-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #9 amateur tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc9s+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc10p = new Photo(
    "../../image/madison/tc10p.jpg", 
    "../../image/madison/tc10p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #10 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 394 to 450 - tee pad on hill with view of the Park and several holes, Pins in the woods</font>",
    "Token Creek, Pro Tees",
	"<a href=\"../../image/madison/tc10p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc10ps = new Photo(
    "../../image/madison/tc10ps.jpg", 
    "../../image/madison/tc10ps-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #10 pro tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc10ps+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc10 = new Photo(
    "../../image/madison/tc10.jpg", 
    "../../image/madison/tc10-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #10 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 246 to 300 - tee pad on hill with view of the Park and several holes, Pins in the woods</font>",
    "Token Creek, AM Tees",
	"<a href=\"../../image/madison/tc10+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc10s = new Photo(
    "../../image/madison/tc10s.jpg", 
    "../../image/madison/tc10s-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #10 amateur tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc10s+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc11p = new Photo(
    "../../image/madison/tc11p.jpg", 
    "../../image/madison/tc11p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #11 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 399 to 471 - fairway lined with bushes</font>",
    "Token Creek, Pro Tees",
	"<a href=\"../../image/madison/tc11p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc11ps = new Photo(
    "../../image/madison/tc11ps.jpg", 
    "../../image/madison/tc11ps-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #11 pro tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc11ps+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc11a = new Photo(
    "../../image/madison/tc11a.jpg", 
    "../../image/madison/tc11a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #11 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 273 to 345 - fairway lined with bushes</font>",
    "Token Creek, AM Tees",
	"<a href=\"../../image/madison/tc11a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc11s = new Photo(
    "../../image/madison/tc11s.jpg", 
    "../../image/madison/tc11s-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #11 amateur tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc11s+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc11b = new Photo(
    "../../image/madison/tc11b.jpg", 
    "../../image/madison/tc11b-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #11 basket area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Baskets",
	"<a href=\"../../image/madison/tc11b+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc12p = new Photo(
    "../../image/madison/tc12p.jpg", 
    "../../image/madison/tc12p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #12 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 205 to 264 - shortest hole from pro tees - very pretty, wooded tee and fairway</font>",
    "Token Creek, Pro Tees",
	"<a href=\"../../image/madison/tc12p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc12ps = new Photo(
    "../../image/madison/tc12ps.jpg", 
    "../../image/madison/tc12ps-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #12 pro tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc12ps+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc12a = new Photo(
    "../../image/madison/tc12a.jpg", 
    "../../image/madison/tc12a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #12 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 171 to 230 - very pretty, wooded tee and fairway</font>",
    "Token Creek, AM Tees",
	"<a href=\"../../image/madison/tc12a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc12s = new Photo(
    "../../image/madison/tc12s.jpg", 
    "../../image/madison/tc12s-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #12 amateur tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc12s+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc12b = new Photo(
    "../../image/madison/tc12b.jpg", 
    "../../image/madison/tc12b-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #12 basket area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Baskets",
	"<a href=\"../../image/madison/tc12b+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc13p = new Photo(
    "../../image/madison/tc13p.jpg", 
    "../../image/madison/tc13p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #13 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 427 to 490 - fairly open with lovely birches in the background</font>",
    "Token Creek, Pro Tees",
	"<a href=\"../../image/madison/tc13p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc13ps = new Photo(
    "../../image/madison/tc13ps.jpg", 
    "../../image/madison/tc13ps-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #13 pro tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc13ps+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc13a = new Photo(
    "../../image/madison/tc13a.jpg", 
    "../../image/madison/tc13a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #13 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 331 to 394 - fairly open with lovely birches in the background</font>",
    "Token Creek, AM Tees",
	"<a href=\"../../image/madison/tc13a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc13s = new Photo(
    "../../image/madison/tc13s.jpg", 
    "../../image/madison/tc13s-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #13 amateur tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc13s+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc13b = new Photo(
    "../../image/madison/tc13b.jpg", 
    "../../image/madison/tc13b-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #13 basket area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Baskets",
	"<a href=\"../../image/madison/tc13b+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc14p = new Photo(
    "../../image/madison/tc14p.jpg", 
    "../../image/madison/tc14p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #14 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 266 to 307 - nicely wooded fairway into wooded tees</font>",
    "Token Creek, Pro Tees",
	"<a href=\"../../image/madison/tc14p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc14ps = new Photo(
    "../../image/madison/tc14ps.jpg", 
    "../../image/madison/tc14ps-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #14 pro tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc14ps+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc14a = new Photo(
    "../../image/madison/tc14a.jpg", 
    "../../image/madison/tc14a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #14 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 218 to 261 - nicely wooded fairway into wooded tees</font>",
    "Token Creek, AM Tees",
	"<a href=\"../../image/madison/tc14a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc14s = new Photo(
    "../../image/madison/tc14s.jpg", 
    "../../image/madison/tc14s-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #14 amateur tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc14s+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc15p = new Photo(
    "../../image/madison/tc15p.jpg", 
    "../../image/madison/tc15p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #15 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 456 to 534 - dog leg left, long, tigh, tree lined fairway</font>",
    "Token Creek, Pro Tees",
	"<a href=\"../../image/madison/tc15p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc15ps = new Photo(
    "../../image/madison/tc15ps.jpg", 
    "../../image/madison/tc15ps-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #15 pro tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc15ps+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc15a = new Photo(
    "../../image/madison/tc15a.jpg", 
    "../../image/madison/tc15a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #15 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 336 to 414 - dog leg left, long, tigh, tree lined fairway</font>",
    "Token Creek, AM Tees",
	"<a href=\"../../image/madison/tc15a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc15s = new Photo(
    "../../image/madison/tc15s.jpg", 
    "../../image/madison/tc15s-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #15 amateur tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc15s+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc15b = new Photo(
    "../../image/madison/tc15b.jpg", 
    "../../image/madison/tc15b-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #15 basket area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Baskets",
	"<a href=\"../../image/madison/tc15b+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc16p = new Photo(
    "../../image/madison/tc16p.jpg", 
    "../../image/madison/tc16p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #16 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 361 to 434 - big right to left horseshoe, trees and bushes along left fairway open on right</font>",
    "Token Creek, Pro Tees",
	"<a href=\"../../image/madison/tc16p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc16ps = new Photo(
    "../../image/madison/tc16ps.jpg", 
    "../../image/madison/tc16ps-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #16 pro tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc16ps+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc16a = new Photo(
    "../../image/madison/tc16a.jpg", 
    "../../image/madison/tc16a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #16 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">304 to 376 - big right to left horseshoe, trees and bushes along left fairway open on right</font>",
    "Token Creek, AM Tees",
	"<a href=\"../../image/madison/tc16a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc16s = new Photo(
    "../../image/madison/tc16s.jpg", 
    "../../image/madison/tc16s-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #16 amateur tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc16s+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc16b = new Photo(
    "../../image/madison/tc16b.jpg", 
    "../../image/madison/tc16b-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #16 basket area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Baskets",
	"<a href=\"../../image/madison/tc16b+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc17p = new Photo(
    "../../image/madison/tc17p.jpg", 
    "../../image/madison/tc17p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #17 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 260 to 280 - tight fairway with tree surrounded pins</font>",
    "Token Creek, Pro Tees",
	"<a href=\"../../image/madison/tc17p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc17ps = new Photo(
    "../../image/madison/tc17ps.jpg", 
    "../../image/madison/tc17ps-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #17 pro tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc17ps+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc17a = new Photo(
    "../../image/madison/tc17a.jpg", 
    "../../image/madison/tc17a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #17 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 230 to 250 - tight fairway with tree surrounded pins</font>",
    "Token Creek, AM Tees",
	"<a href=\"../../image/madison/tc17a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc17s = new Photo(
    "../../image/madison/tc17s.jpg", 
    "../../image/madison/tc17s-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #17 amateur tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc17s+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc17b = new Photo(
    "../../image/madison/tc17b.jpg", 
    "../../image/madison/tc17b-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #17 basket area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Baskets",
	"<a href=\"../../image/madison/tc17b+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc18p = new Photo(
    "../../image/madison/tc18p.jpg", 
    "../../image/madison/tc18p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #18 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 347 to 414 - relatively open with young trees along fairway</font>",
    "Token Creek, Pro Tees",
	"<a href=\"../../image/madison/tc18p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc18ps = new Photo(
    "../../image/madison/tc18ps.jpg", 
    "../../image/madison/tc18ps-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #1 pro tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc1ps+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc18a = new Photo(
    "../../image/madison/tc18a.jpg", 
    "../../image/madison/tc18a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #18 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 239 to 306 - relatively open with young trees along fairway</font>",
    "Token Creek, AM Tees",
	"<a href=\"../../image/madison/tc18a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var tc18s = new Photo(
    "../../image/madison/tc18s.jpg", 
    "../../image/madison/tc18s-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Token Creek hole #18 amateur tee sign</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Token Creek, Signs",
	"<a href=\"../../image/madison/tc18s+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e01p = new Photo(
    "../../image/madison/e01p.jpg", 
    "../../image/madison/e01p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #1 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 260 (long Pin) - A straight shot uphill with trees behind the basket that will help stop your disc if you throw too long.</font>",
    "Elver, Pro Tees",
	"<a href=\"../../image/madison/e01p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e01a = new Photo(
    "../../image/madison/e01a.jpg", 
    "../../image/madison/e01a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #1 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 200 - A straight shot uphill with trees behind the basket that will help stop your disc if you throw too long.</font>",
    "Elver, AM Tees",
	"<a href=\"../../image/madison/e01a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e02p = new Photo(
    "../../image/madison/e02p.jpg", 
    "../../image/madison/e02p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #2 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 425 - The only hole at Elver never to be aced. You can throw your first shot to the corner of the bushes, and then you have a long shot for a birdie, or try the sky annie shot.  Short placement shown, from the tee, the long placement is uphill and back.</font>",
    "Elver, Pro Tees",
	"<a href=\"../../image/madison/e02p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e02a = new Photo(
    "../../image/madison/e02a.jpg", 
    "../../image/madison/e02a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #2 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 400 - The only hole at Elver never to be aced. You can throw your first shot to the corner of the bushes, and then you have a long shot for a birdie, or try the sky annie shot.  Short placement shown, from the tee, the long placement is uphill and back.</font>",
    "Elver, AM Tees",
	"<a href=\"../../image/madison/e02a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e02b = new Photo(
    "../../image/madison/e02b.jpg", 
    "../../image/madison/e02b-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #02 basket area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Elver, Baskets",
	"<a href=\"../../image/madison/e02b+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);


var e03p = new Photo(
    "../../image/madison/e03p.jpg", 
    "../../image/madison/e03p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #3 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 335 - If you throw too far to the right, the approach can be difficult. Throw straight or to the left and you'll have a good shot for a birdie.  Short placement shown, long placement is back and to the right.</font>",
    "Elver, Pro Tees",
	"<a href=\"../../image/madison/e03p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e03a = new Photo(
    "../../image/madison/e03a.jpg", 
    "../../image/madison/e03a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #3 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 300 - If you throw too far to the right, the approach can be difficult. Throw straight or to the left and you'll have a good shot for a birdie.  Short placement shown, long placement is back and to the right.</font>",
    "Elver, AM Tees",
	"<a href=\"../../image/madison/e03a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e04p = new Photo(
    "../../image/madison/e04p.jpg", 
    "../../image/madison/e04p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #4 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 284 - A blind hole, from the am tees throw along a path to the side with an over stable disc and you should hook right in.  From the pro tees it is straight ahead and to the right.</font>",
    "Elver, Pro Tees",
	"<a href=\"../../image/madison/e04p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e04a = new Photo(
    "../../image/madison/e04a.jpg", 
    "../../image/madison/e04a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #4 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 222 - A blind hole, from the am tees throw along a path to the side with an over stable disc and you should hook right in.  From the pro tees it is straight ahead and to the right.</font>",
    "Elver, AM Tees",
	"<a href=\"../../image/madison/e04a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e04b = new Photo(
    "../../image/madison/e04b.jpg", 
    "../../image/madison/e04b-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #04 basket area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Elver, Baskets",
	"<a href=\"../../image/madison/e04b+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e05p = new Photo(
    "../../image/madison/e05p.jpg", 
    "../../image/madison/e05p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #5 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 353 - A very open hole, there's nothing to stop any wind up here.</font>",
    "Elver, Pro Tees",
	"<a href=\"../../image/madison/e05p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e05a = new Photo(
    "../../image/madison/e05a.jpg", 
    "../../image/madison/e05a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #5 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 236 - A very open hole, there's nothing to stop any wind up here.</font>",
    "Elver, AM Tees",
	"<a href=\"../../image/madison/e05a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e06p = new Photo(
    "../../image/madison/e06p.jpg", 
    "../../image/madison/e06p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #6 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 410 - Very similar to the last hole, except you have several large bushes and a few trees to contend with.  Long placement is back behind the tree line and a little right from the short placement.</font>",
    "Elver, Pro Tees",
	"<a href=\"../../image/madison/e06p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e06a = new Photo(
    "../../image/madison/e06a.jpg", 
    "../../image/madison/e06a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #6 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 280 - Very similar to the last hole, except you have several large bushes and a few trees to contend with.  Short placement shown, long placement is back behind the tree line and a little right.</font>",
    "Elver, AM Tees",
	"<a href=\"../../image/madison/e06a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e07p = new Photo(
    "../../image/madison/e07p.jpg", 
    "../../image/madison/e07p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #7 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 225 - A low canopy and tighter trees make you keep your shot very accurate here.  The combination of hard packed dirt with pine needles on top can really make your disc skip when they hit.  Short placement shown, long placement is well to the left.</font>",
    "Elver, Pro Tees",
	"<a href=\"../../image/madison/e07p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e07a = new Photo(
    "../../image/madison/e07a.jpg", 
    "../../image/madison/e07a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #7 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 185 - A low canopy and tighter trees make you keep your shot very accurate here.  The combination of hard packed dirt with pine needles on top can really make your disc skip when they hit.  Short placement shown, long placement is well to the left.</font>",
    "Elver, AM Tees",
	"<a href=\"../../image/madison/e07a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e08p = new Photo(
    "../../image/madison/e08p.jpg", 
    "../../image/madison/e08p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #8 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 270 - A long gentle anhyzer shot is called for here. Throw too short and you'll have some large trees and bushes to contend with.</font>",
    "Elver, Pro Tees",
	"<a href=\"../../image/madison/e08p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e08a = new Photo(
    "../../image/madison/e08a.jpg", 
    "../../image/madison/e08a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #8 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 237 - A long gentle anhyzer shot is called for here. Throw too short and you'll have some large trees and bushes to contend with.</font>",
    "Elver, AM Tees",
	"<a href=\"../../image/madison/e08a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e08b = new Photo(
    "../../image/madison/e08b.jpg", 
    "../../image/madison/e08b-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #8 basket area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Elver, Baskets",
	"<a href=\"../../image/madison/e08b+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e09p = new Photo(
    "../../image/madison/e09p.jpg", 
    "../../image/madison/e09p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #9 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 405 - A blind downhill shot, you need to keep your disc over several large bushes and pine trees, and then drop it down into a clearing on the left at the bottom.  If you go too short or long you'll be in some thicker trees and bushes.  Short placement shown, long placement is further left.</font>",
    "Elver, Pro Tees",
	"<a href=\"../../image/madison/e09p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e09a = new Photo(
    "../../image/madison/e09a.jpg", 
    "../../image/madison/e09a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #9 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 360 - A blind downhill shot, you need to keep your disc over several large bushes and pine trees, and then drop it down into a clearing on the left at the bottom.  If you go too short or long you'll be in some thicker trees and bushes.  Short placement shown, long placement is further left.</font>",
    "Elver, AM Tees",
	"<a href=\"../../image/madison/e09a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e09b = new Photo(
    "../../image/madison/e09b.jpg", 
    "../../image/madison/e09b-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #09 basket area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Elver, Baskets",
	"<a href=\"../../image/madison/e09b+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e10p = new Photo(
    "../../image/madison/e10p.jpg", 
    "../../image/madison/e10p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #10 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 360 - This is a tight, slightly twisting fairway with thick rough and bushes to either side.  Birdies aren't common here.</font>",
    "Elver, Pro Tees",
	"<a href=\"../../image/madison/e10p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e10a = new Photo(
    "../../image/madison/e10a.jpg", 
    "../../image/madison/e10a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #10 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 285 - This is a tight, slightly twisting fairway with thick rough and bushes to either side.  Birdies aren't common here.</font>",
    "Elver, AM Tees",
	"<a href=\"../../image/madison/e10a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e11p = new Photo(
    "../../image/madison/e11p.jpg", 
    "../../image/madison/e11p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #11 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 316 - There are several large trees in the middle of the fairway, and the fairway grasses are higher here.  Left placement shown, there is another on the right side of the fairway.</font>",
    "Elver, Pro Tees",
	"<a href=\"../../image/madison/e11p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e11a = new Photo(
    "../../image/madison/e11a.jpg", 
    "../../image/madison/e11a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #11 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 272 - There are several large trees in the middle of the fairway, and the fairway grasses are higher here.  Left placement shown, there is another on the right side of the fairway.</font>",
    "Elver, AM Tees",
	"<a href=\"../../image/madison/e11a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e11b = new Photo(
    "../../image/madison/e11b.jpg", 
    "../../image/madison/e11b-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #11 basket area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Elver, Baskets",
	"<a href=\"../../image/madison/e11b+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e12p = new Photo(
    "../../image/madison/e12p.jpg", 
    "../../image/madison/e12p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #12 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 308 - A low straight shot can get up for a birdie shot.  A lot of accuracy is called for here with a few trees in the middle and thick bushes and trees at the edges of the fairway.</font>",
    "Elver, Pro Tees",
	"<a href=\"../../image/madison/e12p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e12a = new Photo(
    "../../image/madison/e12a.jpg", 
    "../../image/madison/e12a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #12 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 235 - A low straight shot can get up for a birdie shot.  A lot of accuracy is called for here with a few trees in the middle and thick bushes and trees at the edges of the fairway.</font>",
    "Elver, AM Tees",
	"<a href=\"../../image/madison/e12a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e12b = new Photo(
    "../../image/madison/e12b.jpg", 
    "../../image/madison/e12b-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #12 basket area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Elver, Baskets",
	"<a href=\"../../image/madison/e12b+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e13p = new Photo(
    "../../image/madison/e13p.jpg", 
    "../../image/madison/e13p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #13 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 238 - Time to play plinko in the trees!  You have a narrow fairway area that fades to the right, and several small stumps on the ground that can play with your disc as it skips on pine needles.</font>",
    "Elver, Pro Tees",
	"<a href=\"../../image/madison/e13p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e13a = new Photo(
    "../../image/madison/e13a.jpg", 
    "../../image/madison/e13a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #13 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 181 - Time to play plinko in the trees!  You have a narrow fairway area that fades to the right, and several small stumps on the ground that can play with your disc as it skips on pine needles.</font>",
    "Elver, AM Tees",
	"<a href=\"../../image/madison/e13a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e13b = new Photo(
    "../../image/madison/e13b.jpg", 
    "../../image/madison/e13b-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #13 basket area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Elver, Baskets",
	"<a href=\"../../image/madison/e13b+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e14a = new Photo(
    "../../image/madison/e14a.jpg", 
    "../../image/madison/e14a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #14 amateur and pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro/Am: 205 - A slightly downhill S-curving shot. If you overdrive it, the trees behind the basket can make for some difficult comeback shots.</font>",
    "Elver, AM Tees",
	"<a href=\"../../image/madison/e14a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e14b = new Photo(
    "../../image/madison/e14b.jpg", 
    "../../image/madison/e14b-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #14 basket area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Elver, Baskets",
	"<a href=\"../../image/madison/e14b+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e15p = new Photo(
    "../../image/madison/e15p.jpg", 
    "../../image/madison/e15p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #15 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 400 - Thread the opening with an over stable disc and you'll be set. If you don't make it through, you'll usually have to get creative to get through the trees and bushes.  Left placement shown, alternate placement behind the tree line on the right.</font>",
    "Elver, Pro Tees",
	"<a href=\"../../image/madison/e15p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e15a = new Photo(
    "../../image/madison/e15a.jpg", 
    "../../image/madison/e15a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #15 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 280 - Thread the opening with an over stable disc and you'll be set. If you don't make it through, you'll usually have to get creative to get through the trees and bushes.  Left placement shown, alternate placement behind the tree line on the right.</font>",
    "Elver, AM Tees",
	"<a href=\"../../image/madison/e15a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e15b = new Photo(
    "../../image/madison/e15b.jpg", 
    "../../image/madison/e15b-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #15 basket area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\"></font>",
    "Elver, Baskets",
	"<a href=\"../../image/madison/e15b+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e16p = new Photo(
    "../../image/madison/e16p.jpg", 
    "../../image/madison/e16p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #16 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 327 - Stay out of the trees on either side of the fairway for a very make-able deuce. Ace runs aren't uncommon on this hole, but hitting the ace can be. The last few trees protect the basket well.</font>",
    "Elver, Pro Tees",
	"<a href=\"../../image/madison/e16p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e16a = new Photo(
    "../../image/madison/e16a.jpg", 
    "../../image/madison/e16a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #16 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 280 - Stay out of the trees on either side of the fairway for a very make-able deuce. Ace runs aren't uncommon on this hole, but hitting the ace can be. The last few trees protect the basket well.</font>",
    "Elver, AM Tees",
	"<a href=\"../../image/madison/e16a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e17p = new Photo(
    "../../image/madison/e17p.jpg", 
    "../../image/madison/e17p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #17 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 455 - A lower ceiling on this hole makes you keep your drives level. There are usually a lot of pine needles on the ground near the basket, so big skips and slides are common.  Short placement shown, long placement is much farther back in the trees.</font>",
    "Elver, Pro Tees",
	"<a href=\"../../image/madison/e17p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e17a = new Photo(
    "../../image/madison/e17a.jpg", 
    "../../image/madison/e17a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #17 amateur tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am:395 - A lower ceiling on this hole makes you keep your drives level. There are usually a lot of pine needles on the ground near the basket, so big skips and slides are common.  Short placement shown, long placement is much farther back in the trees.</font>",
    "Elver, AM Tees",
	"<a href=\"../../image/madison/e17a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e18p = new Photo(
    "../../image/madison/e18p.jpg", 
    "../../image/madison/e18p-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #18 pro tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Pro: 490 - One last chance to drive hard and long. Keep your shot level or down and let it glide all the way down.</font>",
    "Elver, Pro Tees",
	"<a href=\"../../image/madison/e18p+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

var e18a = new Photo(
    "../../image/madison/e18a.jpg", 
    "../../image/madison/e18a-.jpg", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Elver hole #18 amatuer tee area</font>", 
    "<font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Am: 353 - One last chance to drive hard and long. Keep your shot level or down and let it glide all the way down.</font>",
    "Elver, AM Tees",
	"<a href=\"../../image/madison/e18a+.jpg\"><font color=\"336699\" face=\"Arial, Helvetica, sans-serif\">Larger Photo</font></a>"
);

/* ********************************************************** */
/* set currPhotoObjectsArray = origPhotoObjectsArray. Don't   */
/* change this code (unless you really know what yer doin')!  */
/* ********************************************************** */

for (var i=0; i<origPhotoObjectsArray.length; i++) 
currPhotoObjectsArray[i] = origPhotoObjectsArray[i];
currPhotoObjectsArrayLength = origPhotoObjectsArray.length  // set global!


