// JavaScript Document

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 3000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 2;

var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this
var showHot = false;       // don't change this

// Specify the image files...
// To add more images, just continue
// the pattern, adding to the array below.
// To use fewer images, remove lines
// starting at the end of the Picture array.
// Caution: The number of Pictures *must*
// equal the number of Captions!

Picture[1]  = 'gallery/STC70.jpg';
Picture[2]  = 'gallery/STC05.jpg';
Picture[3]  = 'gallery/STC10.jpg';
Picture[4]  = 'gallery/STC20.jpg';
Picture[5]  = 'gallery/STC30.jpg';
Picture[6]  = 'gallery/STC40.jpg';
Picture[7]  = 'gallery/STC50.jpg';
Picture[8]  = 'gallery/STC60.jpg';

// Specify the Captions...
// To add more captions, just continue
// the pattern, adding to the array below.
// To use fewer captions, remove lines
// starting at the end of the Caption array.
// Caution: The number of Captions *must*
// equal the number of Pictures!

Caption[1]  = "We are here to answer questions and help you understand your dental insurance. Thank you for visiting our office. Each of our patients are special to us.";
Caption[2]  = "Our offices are all located on one floor, no stairs to climb, <br>with easy parking just outside our door.";
Caption[3]  = "Although you won't spend much time here, our lobby area is comfortable for adults and entertaining for children.";
Caption[4]  = "Welcome to our Eldersburg office! We will do everything <br>we can to make your dental visit as pleasant as possible.";
Caption[5]  = "Our examination rooms were designed with your privacy <br>in mind. There is only patient chair per room and <br>there is a TV to help you relax. A dental hygentist cleans <br>your teeth before the dentist comes in.";
Caption[6]  = "The Cerec equipment is shown on the left <br>and the Waterlase is on the right. <br>Dr. St Cyr utilizes the latest in dental technology <br>to make your visit with us as comfortable as possible. ";
Caption[7]  = "Dr. St. Cyr and his staff are here to give you the best in dental care.";
Caption[8]  = "The Panorex X-ray machine provides a full view of the upper and lower jaws, temporomandibular joints, teeth and sinuses. It clearly shows impacted teeth or other intrabony abnormalities, and surrounding anatomy. The machine makes an entire half-circle motion around the patient to capture an image of the entire oral cavity. Panorex X-rays are taken every 3-5 years.";

// =====================================
// Do not edit anything below this line!
// =====================================

var tss;
var iss;
var jss = 0;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 0; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function control(how){
if (showHot){
if (how=="A") jss = 1;
if (how=="B") jss = 2;
if (how=="C") jss = 3;
if (how=="D") jss = 4;
if (how=="E") jss = 5;
if (how=="F") jss = 6;
if (how=="G") jss = 7;
if (how=="H") jss = 8;
if (jss > (pss)) jss=1;
if (jss < 1) jss = pss;
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
}}

// JavaScript Document
