<!-- 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 slideShowSpeed4 = 4000;
// Duration of crossfade (seconds)
var crossFadeDuration4 = 3;
// Specify the image files
var Pic4 = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic4[0] = 'images/automan_pro1.jpg'
Pic4[1] = 'images/automan_pro2.jpg'
Pic4[2] = 'images/automan_pro3.jpg'
Pic4[3] = 'images/automan_pro4.jpg'
Pic4[4] = 'images/automan_pro5.jpg'
Pic4[5] = 'images/automan_pro6.jpg'

// do not edit anything below this line
var t4;
var j4 = 0;
var p4 = Pic4.length;
var preLoad4 = new Array();
for (i = 0; i < p4; i++) {
preLoad4[i] = new Image();
preLoad4[i].src = Pic4[i];
}
function runSlideShow4() {
if (document.all) {
document.images.SlideShow4.style.filter="blendTrans(duration=2)";
document.images.SlideShow4.style.filter="blendTrans(duration=crossFadeDuration4)";
document.images.SlideShow4.filters.blendTrans.Apply();
}
document.images.SlideShow4.src = preLoad4[j4].src;
if (document.all) {
document.images.SlideShow4.filters.blendTrans.Play();
}
j4 = j4 + 1;
if (j4 > (p4 - 1)) j4 = 0;
t4 = setTimeout('runSlideShow4()', slideShowSpeed4);
}
// 