//*******************************************************
// Javascript file for images exchange code extract out of html fileAnnie 
//
//*******************************************************
// Original:  CodeLifter.com (support@codelifter.com) 
// <!-- Web Site:  http://www.codelifter.com -->

// <!-- This script and many more are available free online at -->
// <!-- The JavaScript Source!! http://javascript.internet.com -->
// <!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 5000;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'js/Marco1.jpg'
Pic[1] = 'js/DCairport.gif'                
Pic[2] = 'js/late_bloomer.gif'                      
Pic[3] = 'js/sunset_trestle0.gif'                 
Pic[4] = 'js/ABeauty_ChamRiver-8-23-083.jpg'        // Cham River Hocham VT
Pic[5] = 'js/dana_dai22.gif'                           
Pic[6] = 'js/Doveegg_Rose.gif'        
Pic[7] = 'js/fishpond8.gif'
Pic[8] = 'js/Popy1.gif'                                    
Pic[9] = 'js/Odie.gif'                        
Pic[10] = 'js/cc_flower1s.gif'                          
Pic[11] = 'js/nb_sunset0_great.gif'            
Pic[12] = 'js/nursingtime1ss.gif'                      
Pic[13] = 'js/Bee-in-Flower1.gif'                     
Pic[14] = 'js/dpYellowDai_ibay.gif'    
Pic[15] = 'js/Fish_vt.gif'                
Pic[16] = 'js/Beauty_of_theorient.gif'                             
Pic[17] = 'js/BeautyTar.gif'                        
Pic[18] = 'js/dragon_fruit2.gif'                             
Pic[19] = 'js/nb_train-bay.gif'                             
Pic[20] = 'js/LadyBird.gif'  
Pic[21] = 'js/vien_shop_reno2.gif'                 
Pic[22] = 'js/nonla_SFbay.gif'                                  
Pic[23] = 'js/ginger_flowers.gif'                                  
Pic[24] = 'js/Tres_Lily_bee.gif'                              
Pic[25] = 'js/JackFruit.gif'                     
Pic[26] = 'js/Lips_orchid.gif'                                   
Pic[27] = 'js/CornPine_Y2K.gif'       
Pic[28] = 'js/banana_bat11ss.gif'        
Pic[29] = 'js/cherryBud.gif'                             
Pic[30] = 'js/Posum.gif'                              
Pic[31] = 'js/HumBird_1.gif'                              
Pic[32] = 'js/Lily_sfbay.gif'                                
Pic[33] = 'js/dana_mango1.gif'

// <!-- End







// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
//  End -->
// </script>
