
thisImg = 1
imgCt = 15

  var caption = new Array();
 
  //caption[0] = "";
  caption[1] = "Here is where it all started.";
  caption[2] = "In Chicago with Mercer Ellington.";
  caption[3] = "";
  caption[4] = "NASHVILLE ALLEY KATZ in the alley behind the Soundshop. 1977. Front 4: John Hartford, Jimmy Culvard, Henry Styrzeleki, Benny Martin. Rear Bunch: Sam Bush, Larrie Londin, ?, Mike Melford, Buddy Emmons, Rich Adler, Roy Huskey.";
  caption[5] = "In Nashville with Earl Scruggs & Very Good Company. <br>Front: Larry Perkins, Earl Scruggs, Sonny Osborne. Rear: Rich, Butch Baldassari, John Hartford, Roy Huskey.";
  caption[6] = "";
  caption[7] = "With Mark Knopfler & David Schnauffer.";
  caption[8] = "Iris DeMent & Jim Rooney.";
  caption[9] = "Marie & John Hartford in their Gum Tree Canoe. John writes: For Rich Adler, Thank you for both your technical and spiritual assitance - Love John Hartford";
  caption[10] = "";
  caption[11] = "With Sam Bush.";
  caption[12] = "With Marty Stuart. Say, Mr. A, just a touch more twang, please.";
  caption[13] = "Yeah... thats it!!";
  caption[14] = "The late Roy Huskey charts one in The Bellvue Studio Suite 2000.";
  caption[15] = "";
function newSlide(direction) {
   if (document.images) {
      thisImg = thisImg + direction
      if (thisImg < 1) {
         thisImg = imgCt
      }
      if (thisImg > imgCt) {
         thisImg = 1
      }
      document.slider.src = "images/photo" + thisImg + ".jpg";
	  document.getElementById("captionText").innerHTML = caption[thisImg];
      }
   }

