//<!-- 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 = 6500;
// Duration of crossfade (seconds)
var crossFadeDuration = 5;
// Specify the image files
var cx = new Array();
// to add more images, just continue
// the pattern, adding to the array below

cx[0] = 'images/featured1259.jpg'
cx[1] = 'images/featured2.jpg'
cx[2] = 'images/featured3.jpg'
cx[3] = 'images/featured4.jpg'
// do not edit anything below this line
var t;
var jx = 0;
var pl = cx.length;
var preLoad = new Array();
for (ix = 0; ix < pl; ix++) {
preLoad[ix] = new Image();
preLoad[ix].src = cx[ix];
}
function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=10)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[jx].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
jx = jx + 1;
if (jx > (pl - 1)) jx = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
//  End -->