<!-- 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 = 2000;
var slideShowSpeed2 = 3000;
var slideShowSpeed3 = 4000;
// Duration of crossfade (seconds)
var crossFadeDuration = 10;
// Specify the image files

var Picnew = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Picnew[0] = 'images/6.jpg'
Picnew[1] = 'images/4.jpg'
Picnew[2] = 'images/2.jpg'

// do not edit anything below this line
var t;
var j = 0;
var p = 3;
var k = 9;
var preLoadnew = new Array();
for (i = 0; i < 3; i++) {
preLoadnew[i] = new Image();
preLoadnew[i].src = Picnew[i];
}


function runSlideShow3() {
if (document.all) {
document.images.SlideShow3.style.filter="blendTrans(duration=2)";
document.images.SlideShow3.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow3.filters.blendTrans.Apply();
}
document.images.SlideShow3.src = preLoadnew[j].src;
if (document.all) {
document.images.SlideShow3.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow3()', slideShowSpeed3);
}


// 