
thisImg = 1
imgCt = 17

  var caption = new Array();
 
  //caption[0] = "";
  caption[1] = "";
  caption[2] = "";
  caption[3] = "A control room with room to dance!";
  caption[4] = "";
  caption[5] = "";
  caption[6] = "Isolation booths allow for visual contact with other musicians.";
  caption[7] = "";
  caption[8] = "";
  caption[9] = "The roots of classic recording are not forgotten!";
  caption[10] = "Both analog and digital technology is offered along with decades of experience.";
  caption[11] = "";
  caption[12] = "";
  caption[13] = "";
  caption[14] = "";
  caption[15] = "";
  caption[16] = "";
  caption[17] = "";
function newSlide(direction) {
   if (document.images) {
      thisImg = thisImg + direction
      if (thisImg < 1) {
         thisImg = imgCt
      }
      if (thisImg > imgCt) {
         thisImg = 1
      }
      document.slider.src = "images/studio" + thisImg + ".jpg";
	  document.getElementById("captionText").innerHTML = caption[thisImg];
      }
   }

