<!-- 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


// AA

// Set Speed (milliseconds)
var AASpeed = 5000;
// Duration of crossfade (seconds)
var AAcrossFadeDuration = 4;
// Specify the image files
var AAPic = new Array();
// to add more images, just continue
// the pattern, adding to the array below

AAPic[0] = 'images/slides/2.jpg'
AAPic[1] = 'images/slides/3.jpg'
AAPic[2] = 'images/slides/4.jpg'
AAPic[3] = 'images/slides/5.jpg'
AAPic[4] = 'images/slides/1.jpg'

// do not edit anything below this line
var AAt;
var AAj = 0;
var AAp = AAPic.length;
var AApreLoad = new Array();
for (AAi = 0; AAi < AAp; AAi++) {
AApreLoad[AAi] = new Image();
AApreLoad[AAi].src = AAPic[AAi];
}
function runAA() {
if (document.all) {
document.images.AA.style.filter="blendTrans(duration=2)";
document.images.AA.style.filter="blendTrans(duration=AAcrossFadeDuration)";
document.images.AA.filters.blendTrans.Apply();
}
document.images.AA.src = AApreLoad[AAj].src;
if (document.all) {
document.images.AA.filters.blendTrans.Play();
}
AAj = AAj + 1;
if (AAj > (AAp - 1)) AAj = 0 ;
AAt = setTimeout('runAA()', AASpeed);
}





//  End -->
