// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 6300

// Duration of crossfade (seconds)
var crossFadeDuration = 12

// Specify the image files
var Pic = new Array() // don't touch this
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = '2008/Judith210x315.jpg'
Pic[1] = '2008/HanifahWalidah210x315.jpg'
Pic[2] = '2008/AlixOlson210x315.jpg'


var j1 = 0

var preLoad = new Array()
for (i = 0; i < Pic.length; i++){
   preLoad[i] = new Image()
   preLoad[i].src = Pic[i]
}

function runSlideShow(){
   if (document.all){
      document.images.picture1.style.filter="blendTrans(duration=2)"
      document.images.picture1.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.picture1.filters.blendTrans.Apply()      
   }
   document.images.picture1.src = preLoad[j1].src
   if (document.all){
      document.images.picture1.filters.blendTrans.Play()
   }
   j1 = j1 + 1
   if (j1 > (Pic.length-1)) j1=0
   setTimeout('runSlideShow()', slideShowSpeed)
}


// SECOND PHOTO


// Set slideShowSpeed (milliseconds)
// change to slideShowSpeed3
 var slideShowSpeed2 = 7200

// Duration of crossfade (seconds)
// change to crossFadeDuration3
 var crossFadeDuration2 = 15

// Specify the image files
// change to Pic3, and make sure to change each line below too
var Pic2 = new Array() 

// to add more images, just continue
// the pattern, adding to the array below

Pic2[0] = '2008/VictoriaKragt210x185.jpg'
Pic2[1] = '2008/LauraLove210x185.jpg'
Pic2[2] = '2008/MargaGomez210x185.jpg'


// change to j3
var j2 = 0

// change to preLoad3, Pic3.length, Pic3[i], etc.
var preLoad2 = new Array()
for (i = 0; i < Pic2.length; i++){
   preLoad2[i] = new Image()
   preLoad2[i].src = Pic2[i]
}

// change to runSlideShow3
function runSlideShow2(){
   if (document.all){
   // change to document.images.picture3.style.filter etc.
      document.images.picture2.style.filter="blendTrans(duration=2)"
      document.images.picture2.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.picture2.filters.blendTrans.Apply()      
   }
   // change to document.images.picture3.src, preLoad3[j3].src
   document.images.picture2.src = preLoad2[j2].src;
   if (document.all){
   // change to document.images.picture3 etc.
      document.images.picture2.filters.blendTrans.Play()
   }
   // change all below to j3, Pic3, runSlideShow3(), and slideShowSpeed3
   j2 = j2 + 1
   if (j2 > (Pic2.length-1)) j2=0
   setTimeout('runSlideShow2()', slideShowSpeed2)
}


// THIRD PHOTO


// Set slideShowSpeed (milliseconds)
// change to slideShowSpeed4
 var slideShowSpeed3 = 7800

// Duration of crossfade (seconds)
// change to crossFadeDuration4
 var crossFadeDuration3 = 10

// Specify the image files
// change to Pic4, and make sure to change each line below too
var Pic3 = new Array() 

// to add more images, just continue
// the pattern, adding to the array below

Pic3[0] = '2008/Betty210x275.jpg'
Pic3[1] = '2008/HollyNear210x275.jpg'
Pic3[2] = '2008/DirtyJenny210x275.jpg'
Pic3[3] = '2008/ErinMcKeown210x275.jpg'


// change to j4
var j3 = 0

// change to preLoad4, Pic4.length, Pic4[i], etc.
var preLoad3 = new Array()
for (i = 0; i < Pic3.length; i++){
   preLoad3[i] = new Image()
   preLoad3[i].src = Pic3[i]
}

// change to runSlideShow4
function runSlideShow3(){
   if (document.all){
   // change to document.images.picture4.style.filter etc.
      document.images.picture3.style.filter="blendTrans(duration=2)"
      document.images.picture3.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.picture3.filters.blendTrans.Apply()      
   }
   // change to document.images.picture4.src, preLoad4[j4].src
   document.images.picture3.src = preLoad3[j3].src;
   if (document.all){
   // change to document.images.picture4 etc.
      document.images.picture3.filters.blendTrans.Play()
   }
   // change all below to j4, Pic4, runSlideShow4(), and slideShowSpeed4
   j3 = j3 + 1
   if (j3 > (Pic3.length-1)) j3=0
   setTimeout('runSlideShow3()', slideShowSpeed3)
}




// FOURTH PHOTO


// Set slideShowSpeed (milliseconds)
// change to slideShowSpeed5
 var slideShowSpeed4 = 6000

// Duration of crossfade (seconds)
// change to crossFadeDuration5
 var crossFadeDuration4 = 15

// Specify the image files
// change to Pic5, and make sure to change each line below too
var Pic4 = new Array() 

// to add more images, just continue
// the pattern, adding to the array below

Pic4[0] = '2008/ToshiReagan210x225.jpg'
Pic4[1] = '2008/AlisonMiller210x225.jpg'
Pic4[2] = '2008/Julie210x225.jpg'


// change to j5
var j4 = 0

// change to preLoad5, Pic5.length, Pic5[i], etc.
var preLoad4 = new Array()
for (i = 0; i < Pic4.length; i++){
   preLoad4[i] = new Image()
   preLoad4[i].src = Pic4[i]
}

// change to runSlideShow5
function runSlideShow4(){
   if (document.all){
   // change to document.images.picture5.style.filter etc.
      document.images.picture4.style.filter="blendTrans(duration=2)"
      document.images.picture4.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.picture4.filters.blendTrans.Apply()      
   }
   // change to document.images.picture5.src, preLoad5[jy].src
   document.images.picture4.src = preLoad4[j4].src;
   if (document.all){
   // change to document.images.picture5 etc.
      document.images.picture4.filters.blendTrans.Play()
   }
   // change all below to j5, Pic5, runSlideShow5(), and slideShowSpeed5
   j4 = j4 + 1
   if (j4 > (Pic4.length-1)) j4=0
   setTimeout('runSlideShow4()', slideShowSpeed4)
}






// FIFTH PHOTO


// Set slideShowSpeed (milliseconds)
 var slideShowSpeed5 = 7200

// Duration of crossfade (seconds)
 var crossFadeDuration2 = 15

// Specify the image files
var Pic5 = new Array() 

// to add more images, just continue
// the pattern, adding to the array below

Pic5[0] = 'images/HanifahWalidah230x350.jpg'
Pic5[1] = 'images/AlixOlson230x350.jpg'
Pic5[2] = 'images/ErinMcKeown230x350.jpg'


var j5 = 0

var preLoad5 = new Array()
for (i = 0; i < Pic5.length; i++){
   preLoad5[i] = new Image()
   preLoad5[i].src = Pic5[i]
}

function runSlideShow5(){
   if (document.all){
      document.images.picture5.style.filter="blendTrans(duration=2)"
      document.images.picture5.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.picture5.filters.blendTrans.Apply()      
   }
   document.images.picture5.src = preLoad5[j5].src;
   if (document.all){
      document.images.picture5.filters.blendTrans.Play()
   }
   j5 = j5 + 1
   if (j5 > (Pic5.length-1)) j5=0
   setTimeout('runSlideShow5()', slideShowSpeed5)
}




// INTENSIVE SLIDES #1  Picture6


// Set slideShowSpeed (milliseconds)
// change to slideShowSpeed6
 var slideShowSpeed6 = 6000

// Duration of crossfade (seconds)
// change to crossFadeDuration6
 var crossFadeDuration6 = 15

// Specify the image files
// change to Pic6, and make sure to change each line below too
var Pic6 = new Array() 

// to add more images, just continue
// the pattern, adding to the array below

Pic6[0] = '   '


// change to j6
var j6 = 0

// change to preLoad6, Pic6.length, Pic6[i], etc.
var preLoad6 = new Array()
for (i = 0; i < Pic6.length; i++){
   preLoad6[i] = new Image()
   preLoad6[i].src = Pic6[i]
}

// change to runSlideShowy
function runSlideShow6(){
   if (document.all){
   // change to document.images.picturey.style.filter etc.
      document.images.picture6.style.filter="blendTrans(duration=2)"
      document.images.picture6.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.picture6.filters.blendTrans.Apply()      
   }
   // change to document.images.picturey.src, preLoad6[jy].src
   document.images.picture6.src = preLoad6[j6].src;
   if (document.all){
   // change to document.images.picturey etc.
      document.images.picture6.filters.blendTrans.Play()
   }
   // change all below to jy, Picy, runSlideShowy(), and slideShowSpeedy
   j6 = j6 + 1
   if (j6 > (Pic6.length-1)) j6=0
   setTimeout('runSlideShow6()', slideShowSpeed6)
}




// INTENSIVE SLIDES #2  Picture7


// Set slideShowSpeed (milliseconds)
// change to slideShowSpeed7
 var slideShowSpeed7 = 7000

// Duration of crossfade (seconds)
// change to crossFadeDuration7
 var crossFadeDuration7 = 8

// Specify the image files
// change to Pic7, and make sure to change each line below too
var Pic7 = new Array() 

// to add more images, just continue
// the pattern, adding to the array below

Pic7[0] = ' '


// change to j7
var j7 = 0

// change to preLoad7, Pic7.length, Pic7[i], etc.
var preLoad7 = new Array()
for (i = 0; i < Pic7.length; i++){
   preLoad7[i] = new Image()
   preLoad7[i].src = Pic7[i]
}

// change to runSlideShowy
function runSlideShow7(){
   if (document.all){
   // change to document.images.picturey.style.filter etc.
      document.images.picture7.style.filter="blendTrans(duration=2)"
      document.images.picture7.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.picture7.filters.blendTrans.Apply()      
   }
   // change to document.images.picturey.src, preLoad7[jy].src
   document.images.picture7.src = preLoad7[j7].src;
   if (document.all){
   // change to document.images.picturey etc.
      document.images.picture7.filters.blendTrans.Play()
   }
   // change all below to jy, Picy, runSlideShowy(), and slideShowSpeedy
   j7 = j7 + 1
   if (j7 > (Pic7.length-1)) j7=0
   setTimeout('runSlideShow7()', slideShowSpeed7)
}





// INTENSIVE SLIDES #3  Picture8


// Set slideShowSpeed (milliseconds)
// change to slideShowSpeed8
 var slideShowSpeed8 = 8000

// Duration of crossfade (seconds)
// change to crossFadeDuration8
 var crossFadeDuration8 = 10

// Specify the image files
// change to Pic8, and make sure to change each line below too
var Pic8 = new Array() 

// to add more images, just continue
// the pattern, adding to the array below

Pic8[0] = '   '


// change to j8
var j8 = 0

// change to preLoad8, Pic8.length, Pic8[i], etc.
var preLoad8 = new Array()
for (i = 0; i < Pic8.length; i++){
   preLoad8[i] = new Image()
   preLoad8[i].src = Pic8[i]
}

// change to runSlideShowy
function runSlideShow8(){
   if (document.all){
   // change to document.images.picture8.style.filter etc.
      document.images.picture8.style.filter="blendTrans(duration=2)"
      document.images.picture8.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.picture8.filters.blendTrans.Apply()      
   }
   // change to document.images.picture8.src, preLoad8[j8].src
   document.images.picture8.src = preLoad8[j8].src;
   if (document.all){
   // change to document.images.picture8 etc.
      document.images.picture8.filters.blendTrans.Play()
   }
   // change all below to j8, Pic8, runSlideShow8(), and slideShowSpeed8
   j8 = j8 + 1
   if (j8 > (Pic8.length-1)) j8=0
   setTimeout('runSlideShow8()', slideShowSpeed8)
}





// INTENSIVE SLIDES #4  Picture9


// Set slideShowSpeed (milliseconds)
// change to slideShowSpeed8
 var slideShowSpeed9 = 8000

// Duration of crossfade (seconds)
// change to crossFadeDuration9
 var crossFadeDuration9 = 10

// Specify the image files
// change to Pic9, and make sure to change each line below too
var Pic9 = new Array() 

// to add more images, just continue
// the pattern, adding to the array below

Pic9[0] = ' '


// change to j9
var j9 = 0

// change to preLoad9, Pic9.length, Pic9[i], etc.
var preLoad9 = new Array()
for (i = 0; i < Pic9.length; i++){
   preLoad9[i] = new Image()
   preLoad9[i].src = Pic9[i]
}

// change to runSlideShowy
function runSlideShow9(){
   if (document.all){
   // change to document.images.picture9.style.filter etc.
      document.images.picture9.style.filter="blendTrans(duration=2)"
      document.images.picture9.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.picture9.filters.blendTrans.Apply()      
   }
   // change to document.images.picture9.src, preLoad9[j9].src
   document.images.picture9.src = preLoad9[j9].src;
   if (document.all){
   // change to document.images.picture9 etc.
      document.images.picture9.filters.blendTrans.Play()
   }
   // change all below to j9, Pic9, runSlideShow9(), and slideShowSpeed9
   j9 = j9 + 1
   if (j9 > (Pic9.length-1)) j9=0
   setTimeout('runSlideShow9()', slideShowSpeed9)
}




















