var narrative = new Array

(
"<div align=center><b>Welcome to Bayshore Athletic Club.</b></div><BR><BR>From the moment you walk through the door at Bayshore, you`ll notice the difference.  Our team is friendly and always has a `Hi - How are you?` as you enter."
,"The desk staff will not only help you with your membership and any questions that you might have, but also can provide workout and nutrition advice, as well as, a spot when you need it."
,"Bayshore`s 50,000 sq ft of space is broken up into 3 main sections.  As you walk into the first section, you'll see - to your right - our three circuit areas."
,"Beyond our circuit areas is our first cardio deck with treadmills, ellipticals, and stationary bikes."
,"As you get deeper into the first section, you come to the chest machines."
,"...then the 19 shoulder machines"
,"...and finally the 27 back machines."
,"If you take a left at the end of the first section, you come into the second main section of the gym. You immediately come to the abdominal and stretching area."
,"A little farther down is our second cardio deck; so you never have to wait for cardio with 85 pieces of equipment."
,"The second section opens into the third and largest of the main sections.  As you go into this third section, to the right is our leg area with over 47 pieces of leg equipment."
//    11
,"Beyond the leg equipment is the heavy weight room for the competition bodybuilder.  Dumbbells in this room range from 50 to 160 lbs."
,"If you go to the left in the third section, you'll find the benches, free weights, inside turf and the arm equipment.  There are over 220 feet of dumbbells and 67 benches."
,"At the end of the free weight area is the Boxing area"
,"...the Judo area"
,"...and the Cycle Studio."
,"There are two additional Studios besides the Spin Studio for our Group Fitness classes.  Studio A is the bigger of the two studios and also doubles as a basketball court."
,"Studio B is more intimate and is for our Pilates and Yoga classes."
,"If you now go back towards the front of the gym, on your right are the men's and women's locker rooms.  The locker rooms are spacious with plenty of lockers available."
,"At the very front of the gym is the babysitting room for our members who have young children."
,"Now you are back at the entrance by our front desk and Juice Bar. The Juice Bar serves over 60 nutritional drinks and is also a gathering place for our members."
,"We hope the Tour gave you a feel for Bayshore.  Please stop by and we`ll be glad to give you a real tour; so you can truly appreciate the size of the facility, the amount of equipment and the friendly nature of our gym."
,"<div align=center><b>Thank you for taking the Tour.</b><BR><BR><b><i>Hope to see you soon.</i></b></div>"
);
var inttime = new Array
(
5000
,7000
,7000
,5000
,6000
,4000
,5000
,7000
,8000
,9000
//   11
,9000
,9000
,6000
,4000
,4000
,9000
,7000
,9000
,9000
,9000
,6000
,3000


);
var pictures = new Array(22);
var picture_num = 22;
var picture_max = 22;
var num = 0;
//  setInterval("slideshow()", 8500);
function startslides()

{

pictures[0] = "wp09_files/image004.jpg";
pictures[1] = "wp09_files/image005.jpg";
pictures[2] = "wp09_files/image006.jpg";
pictures[3] = "wp09_files/image007.jpg";
pictures[4] = "wp09_files/image008.jpg";
pictures[5] = "wp09_files/image009.jpg";
pictures[6] = "wp09_files/image010.jpg";
pictures[7] = "wp09_files/image011.jpg";
pictures[8] = "wp09_files/image012.jpg";
pictures[9] = "wp09_files/image013.jpg";
pictures[10] = "wp09_files/image014.jpg";
pictures[11] = "wp09_files/image015.jpg";
pictures[12] = "wp09_files/image016.jpg";
pictures[13] = "wp09_files/image017.jpg";
pictures[14] = "wp09_files/image018.jpg";
pictures[15] = "wp09_files/image019.jpg";
pictures[16] = "wp09_files/image020.jpg";
pictures[17] = "wp09_files/image021.jpg";
pictures[18] = "wp09_files/image022.jpg";
pictures[19] = "wp09_files/image023.jpg";
pictures[20] = "wp09_files/image024.jpg";
pictures[21] = "wp09_files/image025.jpg";

slideshownext()

}
function slideshownext()
{

  picture_num++;
  if (picture_num > picture_max)
  {
    picture_num = 1;
  }
  num = picture_num - 1;
  document["rotating_picture"].src = pictures[num];
  document.getElementById("slide_text").innerHTML = narrative[num];
  document.getElementById("slidecnt").innerHTML = "<FONT SIZE=-1>Slide " + picture_num + " of " + picture_max + "</FONT>";
//  setTimeout("slideshow()",inttime[num]);
}
function slideshowprev()
{

  picture_num--;
  if (picture_num <= 1)
  {
    picture_num = 1;
  }
  num = picture_num - 1;
  document["rotating_picture"].src = pictures[num];
  document.getElementById("slide_text").innerHTML = narrative[num];
  document.getElementById("slidecnt").innerHTML = "<FONT SIZE=-1>Slide " + picture_num + " of " + picture_max + "</FONT>";
//  setTimeout("slideshow()",inttime[num]);
}
// End of header portion of script -->