<!-- 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 Slide Show AAA

// Set slideShowSpeedAAA (milliseconds)
var slideShowSpeedAAA = 4000;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var PicAAA = new Array();
// to add more images, just continue
// the pattern, adding to the array below

PicAAA[0] = 'assets/rotate/rot-pic-1.jpg'
PicAAA[1] = 'assets/rotate/rot-pic-2.jpg'
PicAAA[2] = 'assets/rotate/rot-pic-3.jpg'
PicAAA[3] = 'assets/rotate/rot-pic-4.jpg'

// do not edit anything below this line
var tAAA;
var jAAA = 0;
var pAAA = PicAAA.length;
var preLoadAAA = new Array();
for (i = 0; i < pAAA; i++) {
preLoadAAA[i] = new Image();
preLoadAAA[i].src = PicAAA[i];
}
function runSlideShowAAA() {
if (document.all) {
document.images.SlideShowAAA.style.filter="blendTrans(duration=2)";
document.images.SlideShowAAA.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShowAAA.filters.blendTrans.Apply();
}
document.images.SlideShowAAA.src = preLoadAAA[jAAA].src;
if (document.all) {
document.images.SlideShowAAA.filters.blendTrans.Play();
}
jAAA = jAAA + 1;
if (jAAA > (pAAA - 1)) jAAA = 0;
tAAA = setTimeout('runSlideShowAAA()', slideShowSpeedAAA);
}
//  End -->
