// Set slideShowSpeed (milliseconds) 
var slideShowSpeed0 = 3000; 
// Duration of crossfade (seconds) 
var crossFadeDuration0 = 3; 
// Specify the image files 
var Pic0 = new Array(); 
// to add more images, just continue 
// the pattern, adding to the array below 

Pic0[0] = 'images/headergraphic2.jpg' 
Pic0[1] = 'images/headergraphic2a.jpg' 


// do not edit anything below this line 
var t0; 
var j0 = 0; 
var p0 = Pic0.length; 
var preLoad0 = new Array(); 
for (i0 = 0; i0 < p0; i0++) { 
preLoad0[i0] = new Image(); 
preLoad0[i0].src = Pic0[i0]; 
} 
function runSlideShow0() { 
if (document.all) { 
document.images.SlideShow0.style.filter="blendTrans(duration=2)"; 
document.images.SlideShow0.style.filter="blendTrans(duration=crossFadeDuration)"; 
document.images.SlideShow0.filters.blendTrans.Apply(); 
} 
document.images.SlideShow0.src = preLoad0[j0].src; 
if (document.all) { 
document.images.SlideShow0.filters.blendTrans.Play(); 
} 
j0 = j0 + 1; 
if (j0 > (p0 - 1)) j0 = 0; 
t0 = setTimeout('runSlideShow0()', slideShowSpeed0); 
} 
