<!-- 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 = 3000;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'images/msc-shopfront2.jpg'
Pic[1] = 'images/dry-cleaning.jpg'
Pic[2] = 'images/shop-interior.jpg'
Pic[3] = 'images/clean-duvet.jpg'
Pic[4] = 'images/repairs.jpg'

// do not edit anything below this line
var t;
var next_img = 0;
var p = Pic.length;
var preLoad = new Array();
for (this_img = 0; this_img < p; this_img++) {
preLoad[this_img] = new Image();
preLoad[this_img].src = Pic[this_img];
}
function runSlideShow() {
//alert('next_img = '+next_img);
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[next_img].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
next_img= next_img + 1;
if (next_img > (p - 1)) next_img = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
//  End -->